Package org.duracloud.common.event
Enum AccountChangeEvent.EventType
- java.lang.Object
-
- java.lang.Enum<AccountChangeEvent.EventType>
-
- org.duracloud.common.event.AccountChangeEvent.EventType
-
- All Implemented Interfaces:
Serializable,Comparable<AccountChangeEvent.EventType>
- Enclosing class:
- AccountChangeEvent
public static enum AccountChangeEvent.EventType extends Enum<AccountChangeEvent.EventType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_CHANGEDALL_ACCOUNTS_CHANGEDSTORAGE_PROVIDER_CACHE_ON_NODE_CHANGEDSTORAGE_PROVIDERS_CHANGEDUSERS_CHANGED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccountChangeEvent.EventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AccountChangeEvent.EventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT_CHANGED
public static final AccountChangeEvent.EventType ACCOUNT_CHANGED
-
USERS_CHANGED
public static final AccountChangeEvent.EventType USERS_CHANGED
-
STORAGE_PROVIDERS_CHANGED
public static final AccountChangeEvent.EventType STORAGE_PROVIDERS_CHANGED
-
ALL_ACCOUNTS_CHANGED
public static final AccountChangeEvent.EventType ALL_ACCOUNTS_CHANGED
-
STORAGE_PROVIDER_CACHE_ON_NODE_CHANGED
public static final AccountChangeEvent.EventType STORAGE_PROVIDER_CACHE_ON_NODE_CHANGED
-
-
Method Detail
-
values
public static AccountChangeEvent.EventType[] 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 (AccountChangeEvent.EventType c : AccountChangeEvent.EventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountChangeEvent.EventType 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
-
-