public enum VerbType extends Enum<VerbType>
| Enum Constant and Description |
|---|
GET_RECORD |
IDENTIFY |
LIST_IDENTIFIERS |
LIST_METADATA_FORMATS |
LIST_RECORDS |
LIST_SETS |
| Modifier and Type | Method and Description |
|---|---|
static VerbType |
fromValue(String v) |
String |
value() |
static VerbType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerbType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerbType IDENTIFY
public static final VerbType LIST_METADATA_FORMATS
public static final VerbType LIST_SETS
public static final VerbType GET_RECORD
public static final VerbType LIST_IDENTIFIERS
public static final VerbType LIST_RECORDS
public static VerbType[] values()
for (VerbType c : VerbType.values()) System.out.println(c);
public static VerbType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2020. All rights reserved.