public enum ProviderState extends Enum<ProviderState>
| Modifier and Type | Method and Description |
|---|---|
static ProviderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProviderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderState READY
public static final ProviderState NOT_READY
public static final ProviderState ERROR
public static final ProviderState STALE
public static ProviderState[] values()
for (ProviderState c : ProviderState.values()) System.out.println(c);
public static ProviderState 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.