public static enum Repository.State extends Enum<Repository.State>
Enum Constant and Description |
---|
NOT_REACHABLE
The repository cannot be reached.
|
REACHABLE
The repository can be communicated with.
|
Modifier and Type | Method and Description |
---|---|
static Repository.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Repository.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Repository.State NOT_REACHABLE
public static final Repository.State REACHABLE
public static Repository.State[] values()
for (Repository.State c : Repository.State.values()) System.out.println(c);
public static Repository.State 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 © 2013–2019. All rights reserved.