Enum GmlConstants.NilReason

  • All Implemented Interfaces:
    Serializable, Comparable<GmlConstants.NilReason>
    Enclosing interface:
    GmlConstants

    public static enum GmlConstants.NilReason
    extends Enum<GmlConstants.NilReason>
    inapplicable there is no value missing the correct value is not readily available to the sender of this data. Furthermore, a correct value may not exist template the value will be available later unknown the correct value is not known to, and not computable by, the sender of this data. However, a correct value probably exists withheld the value is not divulged Not supported: other:text other brief explanation, where text is a string of two or more characters with no included spaces
    Since:
    1.0.0
    • Method Detail

      • values

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

        public static GmlConstants.NilReason 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