public enum LeaseState extends Enum<LeaseState>
Enum Constant and Description |
---|
AVAILABLE
The lease is in the Available state.
|
BREAKING
The lease is in the Breaking state.
|
BROKEN
The lease is in the Broken state.
|
EXPIRED
The lease is in the Expired state.
|
LEASED
The lease is in the Leased state.
|
UNSPECIFIED
The lease state is not specified.
|
Modifier and Type | Method and Description |
---|---|
protected static LeaseState |
parse(String typeString)
Parses a lease state from the given string.
|
static LeaseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LeaseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeaseState UNSPECIFIED
public static final LeaseState AVAILABLE
public static final LeaseState LEASED
public static final LeaseState EXPIRED
public static final LeaseState BREAKING
public static final LeaseState BROKEN
public static LeaseState[] values()
for (LeaseState c : LeaseState.values()) System.out.println(c);
public static LeaseState 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 nullprotected static LeaseState parse(String typeString)
typeString
- A String
which contains the lease state to parse.LeaseStatus
value that represents the lease status.Copyright © 2019. All rights reserved.