Enum Code

  • All Implemented Interfaces:
    com.github.davidmoten.odata.client.Enum, Serializable, Comparable<Code>

    public enum Code
    extends Enum<Code>
    implements com.github.davidmoten.odata.client.Enum
    • Enum Constant Detail

      • NONE

        public static final Code NONE
      • JSON_FILE_INVALID

        public static final Code JSON_FILE_INVALID
      • JSON_FILE_MISSING

        public static final Code JSON_FILE_MISSING
      • JSON_FILE_TOO_LARGE

        public static final Code JSON_FILE_TOO_LARGE
      • RULES_MISSING

        public static final Code RULES_MISSING
      • DUPLICATE_RULES

        public static final Code DUPLICATE_RULES
      • TOO_MANY_RULES_SPECIFIED

        public static final Code TOO_MANY_RULES_SPECIFIED
      • OPERATOR_MISSING

        public static final Code OPERATOR_MISSING
      • OPERATOR_NOT_SUPPORTED

        public static final Code OPERATOR_NOT_SUPPORTED
      • DATATYPE_MISSING

        public static final Code DATATYPE_MISSING
      • DATATYPE_NOT_SUPPORTED

        public static final Code DATATYPE_NOT_SUPPORTED
      • OPERATOR_DATA_TYPE_COMBINATION_NOT_SUPPORTED

        public static final Code OPERATOR_DATA_TYPE_COMBINATION_NOT_SUPPORTED
      • MORE_INFO_URI_MISSING

        public static final Code MORE_INFO_URI_MISSING
      • MORE_INFO_URI_INVALID

        public static final Code MORE_INFO_URI_INVALID
      • MORE_INFO_URI_TOO_LARGE

        public static final Code MORE_INFO_URI_TOO_LARGE
      • DESCRIPTION_MISSING

        public static final Code DESCRIPTION_MISSING
      • DESCRIPTION_INVALID

        public static final Code DESCRIPTION_INVALID
      • DESCRIPTION_TOO_LARGE

        public static final Code DESCRIPTION_TOO_LARGE
      • TITLE_MISSING

        public static final Code TITLE_MISSING
      • TITLE_INVALID

        public static final Code TITLE_INVALID
      • TITLE_TOO_LARGE

        public static final Code TITLE_TOO_LARGE
      • OPERAND_MISSING

        public static final Code OPERAND_MISSING
      • OPERAND_INVALID

        public static final Code OPERAND_INVALID
      • OPERAND_TOO_LARGE

        public static final Code OPERAND_TOO_LARGE
      • SETTING_NAME_MISSING

        public static final Code SETTING_NAME_MISSING
      • SETTING_NAME_INVALID

        public static final Code SETTING_NAME_INVALID
      • SETTING_NAME_TOO_LARGE

        public static final Code SETTING_NAME_TOO_LARGE
      • ENGLISH_LOCALE_MISSING

        public static final Code ENGLISH_LOCALE_MISSING
      • DUPLICATE_LOCALES

        public static final Code DUPLICATE_LOCALES
      • UNRECOGNIZED_LOCALE

        public static final Code UNRECOGNIZED_LOCALE
      • UNKNOWN

        public static final Code UNKNOWN
      • REMEDIATION_STRINGS_MISSING

        public static final Code REMEDIATION_STRINGS_MISSING
    • Method Detail

      • values

        public static Code[] 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 (Code c : Code.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Code valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • enumName

        public String enumName()
        Specified by:
        enumName in interface com.github.davidmoten.odata.client.Enum
      • enumValue

        public String enumValue()
        Specified by:
        enumValue in interface com.github.davidmoten.odata.client.Enum