Enum VerbType

  • All Implemented Interfaces:
    Serializable, Comparable<VerbType>

    public enum VerbType
    extends Enum<VerbType>
    Java class for verbType. The following schema fragment specifies the expected content contained within this class.
    • Enum Constant Detail

      • IDENTIFY

        public static final VerbType IDENTIFY
      • LIST_METADATA_FORMATS

        public static final VerbType LIST_METADATA_FORMATS
      • LIST_SETS

        public static final VerbType LIST_SETS
      • GET_RECORD

        public static final VerbType GET_RECORD
      • LIST_IDENTIFIERS

        public static final VerbType LIST_IDENTIFIERS
      • LIST_RECORDS

        public static final VerbType LIST_RECORDS
    • Method Detail

      • values

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

        public static VerbType 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
      • value

        public String value()