Package gov.usgs.earthquake.indexer
Enum ExternalPreferredListener.PreferredAction
- java.lang.Object
-
- java.lang.Enum<ExternalPreferredListener.PreferredAction>
-
- gov.usgs.earthquake.indexer.ExternalPreferredListener.PreferredAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExternalPreferredListener.PreferredAction>
- Enclosing class:
- ExternalPreferredListener
public static enum ExternalPreferredListener.PreferredAction extends java.lang.Enum<ExternalPreferredListener.PreferredAction>
Types of preferred product actions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PREFERRED_ADDED
Preferred added product enumPREFERRED_CHANGED
Preferred changed product enumPREFERRED_REMOVED
Preferred removed product enum
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExternalPreferredListener.PreferredAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExternalPreferredListener.PreferredAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PREFERRED_ADDED
public static final ExternalPreferredListener.PreferredAction PREFERRED_ADDED
Preferred added product enum
-
PREFERRED_CHANGED
public static final ExternalPreferredListener.PreferredAction PREFERRED_CHANGED
Preferred changed product enum
-
PREFERRED_REMOVED
public static final ExternalPreferredListener.PreferredAction PREFERRED_REMOVED
Preferred removed product enum
-
-
Method Detail
-
values
public static ExternalPreferredListener.PreferredAction[] 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 (ExternalPreferredListener.PreferredAction c : ExternalPreferredListener.PreferredAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExternalPreferredListener.PreferredAction valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-