Sort
- 인쇄
- PDF
Sort
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
설명
정렬 기준
구문
private String direction;
private String property;
private Boolean ignoreCase;
private String nullHandling;
private Boolean ascending;
private Boolean descending;
필드
항목 | 필수 여부 | 타입 | 제약 사항 | 설명 |
---|---|---|---|---|
direction | Yes | String | ASC, DESC | 정렬 방향 |
property | Yes | String | 정렬 기준 필드명 | |
ignoreCase | Yes | Boolean | 대소문자 구분하여 정렬할지 여부 | |
nullHandling | Yes | String | NATIVE, NULLS_FIRST, NULLS_LAST | null 처리 방식 (NATIVE: data 처리로직에 맡김 , NULLS_FIRST : null 값이 앞으로, NULLS_LAST: null 값이 뒤로) |
ascending | Yes | Boolean | 정렬 방향 Ascending(ASC) 인지 여부 | |
descending | Yes | Boolean | 정렬 방향 Descending(DESC) 인지 여부 |
이 문서가 도움이 되었습니까?