Enum AdvisoryFields
- java.lang.Object
-
- java.lang.Enum<AdvisoryFields>
-
- com.aerisweather.aeris.communication.fields.AdvisoryFields
-
- All Implemented Interfaces:
CodedInterface
,Serializable
,Comparable<AdvisoryFields>
public enum AdvisoryFields extends Enum<AdvisoryFields> implements CodedInterface
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDED
ADDED_ISO
BEGINS
BEGINS_ISO
BODY
BODY_FULL
DETAILS
EXPIRES
EXPIRES_ISO
INCLUDES
INCLUDES_COUNTIES
INCLUDES_FIPS
INCLUDES_WXZONES
INCLUDES_ZIPCODES
ISSUED
ISSUED_ISO
LOCATION
NAME
POLY
TIMESTAMPS
TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCode()
Get the code for the defined object.static AdvisoryFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static AdvisoryFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DETAILS
public static final AdvisoryFields DETAILS
-
TYPE
public static final AdvisoryFields TYPE
-
NAME
public static final AdvisoryFields NAME
-
LOCATION
public static final AdvisoryFields LOCATION
-
BODY
public static final AdvisoryFields BODY
-
BODY_FULL
public static final AdvisoryFields BODY_FULL
-
TIMESTAMPS
public static final AdvisoryFields TIMESTAMPS
-
ISSUED
public static final AdvisoryFields ISSUED
-
ISSUED_ISO
public static final AdvisoryFields ISSUED_ISO
-
BEGINS
public static final AdvisoryFields BEGINS
-
BEGINS_ISO
public static final AdvisoryFields BEGINS_ISO
-
EXPIRES
public static final AdvisoryFields EXPIRES
-
EXPIRES_ISO
public static final AdvisoryFields EXPIRES_ISO
-
ADDED
public static final AdvisoryFields ADDED
-
ADDED_ISO
public static final AdvisoryFields ADDED_ISO
-
POLY
public static final AdvisoryFields POLY
-
INCLUDES
public static final AdvisoryFields INCLUDES
-
INCLUDES_COUNTIES
public static final AdvisoryFields INCLUDES_COUNTIES
-
INCLUDES_FIPS
public static final AdvisoryFields INCLUDES_FIPS
-
INCLUDES_WXZONES
public static final AdvisoryFields INCLUDES_WXZONES
-
INCLUDES_ZIPCODES
public static final AdvisoryFields INCLUDES_ZIPCODES
-
-
Method Detail
-
values
public static AdvisoryFields[] 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 (AdvisoryFields c : AdvisoryFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdvisoryFields 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
-
getCode
public String getCode()
Description copied from interface:CodedInterface
Get the code for the defined object.- Specified by:
getCode
in interfaceCodedInterface
- Returns:
- String code to be used in requests.
-
-