Package gov.usgs.earthquake.indexer
Enum IndexerChange.IndexerChangeType
- java.lang.Object
-
- java.lang.Enum<IndexerChange.IndexerChangeType>
-
- gov.usgs.earthquake.indexer.IndexerChange.IndexerChangeType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IndexerChange.IndexerChangeType>
- Enclosing class:
- IndexerChange
public static enum IndexerChange.IndexerChangeType extends java.lang.Enum<IndexerChange.IndexerChangeType>
Enumeration of indexer event types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENT_ADDED
Enum for IndexerChangeType Event AddedEVENT_ARCHIVED
Enum for IndexerChangeType Event ArchivedEVENT_DELETED
Enum for IndexerChangeType Event DeletedEVENT_MERGED
Enum for IndexerChangeType Event MergedEVENT_SPLIT
Enum for IndexerChangeType Event SplitEVENT_UPDATED
Enum for IndexerChangeType Event UpdatedPRODUCT_ADDED
Enum for IndexerChangeType Product AddedPRODUCT_ARCHIVED
Enum for IndexerChangeType Product ArchivedPRODUCT_DELETED
Enum for IndexerChangeType Product DeletedPRODUCT_UPDATED
Enum for IndexerChangeType Product Updated
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IndexerChange.IndexerChangeType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IndexerChange.IndexerChangeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVENT_ADDED
public static final IndexerChange.IndexerChangeType EVENT_ADDED
Enum for IndexerChangeType Event Added
-
EVENT_UPDATED
public static final IndexerChange.IndexerChangeType EVENT_UPDATED
Enum for IndexerChangeType Event Updated
-
EVENT_DELETED
public static final IndexerChange.IndexerChangeType EVENT_DELETED
Enum for IndexerChangeType Event Deleted
-
EVENT_ARCHIVED
public static final IndexerChange.IndexerChangeType EVENT_ARCHIVED
Enum for IndexerChangeType Event Archived
-
EVENT_MERGED
public static final IndexerChange.IndexerChangeType EVENT_MERGED
Enum for IndexerChangeType Event Merged
-
EVENT_SPLIT
public static final IndexerChange.IndexerChangeType EVENT_SPLIT
Enum for IndexerChangeType Event Split
-
PRODUCT_ADDED
public static final IndexerChange.IndexerChangeType PRODUCT_ADDED
Enum for IndexerChangeType Product Added
-
PRODUCT_UPDATED
public static final IndexerChange.IndexerChangeType PRODUCT_UPDATED
Enum for IndexerChangeType Product Updated
-
PRODUCT_DELETED
public static final IndexerChange.IndexerChangeType PRODUCT_DELETED
Enum for IndexerChangeType Product Deleted
-
PRODUCT_ARCHIVED
public static final IndexerChange.IndexerChangeType PRODUCT_ARCHIVED
Enum for IndexerChangeType Product Archived
-
-
Method Detail
-
values
public static IndexerChange.IndexerChangeType[] 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 (IndexerChange.IndexerChangeType c : IndexerChange.IndexerChangeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexerChange.IndexerChangeType 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
-
-