com.supermap.onlineservices.utils

Enum GroupOrderBy

  • java.lang.Object
    • java.lang.Enum<GroupOrderBy>
      • com.supermap.onlineservices.utils.GroupOrderBy
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<GroupOrderBy>


    public enum GroupOrderBy
    extends java.lang.Enum<GroupOrderBy>
    Function: the sorting orders
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method and Description
      static GroupOrderBy valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static GroupOrderBy[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • CREATETIME

        public static final GroupOrderBy CREATETIME
        The creation time
      • CREATOR

        public static final GroupOrderBy CREATOR
        The creator
      • GROUPNAME

        public static final GroupOrderBy GROUPNAME
        The group name
      • ISPUBLIC

        public static final GroupOrderBy ISPUBLIC
        Whether to public type
      • NICKNAME

        public static final GroupOrderBy NICKNAME
        The nick name of the creator
      • UPDATETIME

        public static final GroupOrderBy UPDATETIME
        Updated time
    • Method Detail

      • values

        public static GroupOrderBy[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (GroupOrderBy c : GroupOrderBy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GroupOrderBy valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null