Package thredds.server.cdmremote
Enum CdmRemoteQueryBean.RequestType
- java.lang.Object
-
- java.lang.Enum<CdmRemoteQueryBean.RequestType>
-
- thredds.server.cdmremote.CdmRemoteQueryBean.RequestType
-
- All Implemented Interfaces:
Serializable,Comparable<CdmRemoteQueryBean.RequestType>
- Enclosing class:
- CdmRemoteQueryBean
public static enum CdmRemoteQueryBean.RequestType extends Enum<CdmRemoteQueryBean.RequestType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description capabilitiescdldataheaderncml
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CdmRemoteQueryBean.RequestTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CdmRemoteQueryBean.RequestType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
capabilities
public static final CdmRemoteQueryBean.RequestType capabilities
-
cdl
public static final CdmRemoteQueryBean.RequestType cdl
-
data
public static final CdmRemoteQueryBean.RequestType data
-
header
public static final CdmRemoteQueryBean.RequestType header
-
ncml
public static final CdmRemoteQueryBean.RequestType ncml
-
-
Method Detail
-
values
public static CdmRemoteQueryBean.RequestType[] 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 (CdmRemoteQueryBean.RequestType c : CdmRemoteQueryBean.RequestType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CdmRemoteQueryBean.RequestType 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 nameNullPointerException- if the argument is null
-
-