Sort

Prev Next

Classic/VPC 환경에서 이용 가능합니다.

정렬 기준입니다.

구문

구문은 다음과 같습니다.

private String direction;
private String property;
private Boolean ignoreCase;
private String nullHandling;
private Boolean ascending;
private Boolean descending;

필드

필드에 대한 설명은 다음과 같습니다.

필드 타입 필수 여부 설명
direction String Required 정렬 방향
  • ASC | DESC
    • ASC: Ascending
    • DESC: Descending
property String Required 정렬 기준 필드명
ignoreCase Boolean Required 정렬 시 대소문자 구분 여부
  • true | false
nullHandling String Required Null 처리 방식
  • NATIVE | NULLS_FIRST | NULLS_LAST
    • NATIVE: 데이터 처리 로직에 맡김
    • NULLS_FIRST: Null 값이 앞으로 옴
    • NULLS_LAST: Null 값이 뒤로 옴
ascending Boolean Required 정렬 방향 Ascending (ASC) 여부
  • true | false
descending Boolean Required 정렬 방향 Descending (DESC) 여부
  • true | false