Enum AdditionalField.DataType

    • Method Detail

      • values

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

        public static AdditionalField.DataType 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
      • getByKey

        @NotNull
        public static @NotNull AdditionalField.DataType getByKey​(@Nullable
                                                                 @Nullable String key)
        Get the enum constant by the known additional field data type key (can be null).
        If the key is null/empty or relevant enum constant with this key will not be found then this method will return UNKNOWN constant as default.
        Parameters:
        key - the data type key to find an enum constant.
        Returns:
        The found data type enum constant or UNKNOWN by default.