001
014
015 package com.liferay.portal.util.comparator;
016
017 import com.liferay.portal.kernel.util.OrderByComparator;
018 import com.liferay.portal.model.Role;
019
020
023 public class RoleDescriptionComparator extends OrderByComparator {
024
025 public static String ORDER_BY_ASC =
026 "Role_.description ASC, Role_.name ASC";
027
028 public static String ORDER_BY_DESC =
029 "Role_.description DESC, Role_.name DESC";
030
031 public static String[] ORDER_BY_FIELDS = {"description", "name"};
032
033 public RoleDescriptionComparator() {
034 this(false);
035 }
036
037 public RoleDescriptionComparator(boolean ascending) {
038 _ascending = ascending;
039 }
040
041 public int compare(Object obj1, Object obj2) {
042 Role role1 = (Role)obj1;
043 Role role2 = (Role)obj2;
044
045 int value = role1.getDescription().compareTo(
046 role2.getDescription());
047
048 if (value == 0) {
049 value = role1.getName().compareTo(role2.getName());
050 }
051
052 if (_ascending) {
053 return value;
054 }
055 else {
056 return -value;
057 }
058 }
059
060 public String getOrderBy() {
061 if (_ascending) {
062 return ORDER_BY_ASC;
063 }
064 else {
065 return ORDER_BY_DESC;
066 }
067 }
068
069 public String[] getOrderByFields() {
070 return ORDER_BY_FIELDS;
071 }
072
073 public boolean isAscending() {
074 return _ascending;
075 }
076
077 private boolean _ascending;
078
079 }