public enum ProviderEvent extends Enum<ProviderEvent>
| Enum Constant and Description |
|---|
PROVIDER_CONFIGURATION_CHANGED |
PROVIDER_ERROR |
PROVIDER_READY |
PROVIDER_STALE |
| Modifier and Type | Method and Description |
|---|---|
static ProviderEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProviderEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderEvent PROVIDER_READY
public static final ProviderEvent PROVIDER_CONFIGURATION_CHANGED
public static final ProviderEvent PROVIDER_ERROR
public static final ProviderEvent PROVIDER_STALE
public static ProviderEvent[] values()
for (ProviderEvent c : ProviderEvent.values()) System.out.println(c);
public static ProviderEvent valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.