public static enum NETChargeInfo.Status extends java.lang.Enum<NETChargeInfo.Status>
| Enum Constant and Description |
|---|
ACTIVE
The charge process is currently active.
|
BOOKED
A booking request has been made and a charging point has been booked.
|
COMPLETED
The charge process has been completed.
|
DELETED
The charge booking has been deleted.
|
EXPIRED
The charge booking has expired.
|
FAILED
An operation with the EMM system failed (e.g.
|
LOCALLY_BOOKED
Status used to represents an intention to charge the vehicle, but the booking hasn't been
made to the EMM system.
|
PENDING
The charge is in this status when an operation is ongoing (e.g.
|
STOPPED
The charge process has been stopped.
|
| Modifier and Type | Method and Description |
|---|---|
static NETChargeInfo.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NETChargeInfo.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NETChargeInfo.Status PENDING
public static final NETChargeInfo.Status LOCALLY_BOOKED
public static final NETChargeInfo.Status BOOKED
public static final NETChargeInfo.Status ACTIVE
public static final NETChargeInfo.Status STOPPED
public static final NETChargeInfo.Status COMPLETED
public static final NETChargeInfo.Status DELETED
public static final NETChargeInfo.Status EXPIRED
public static final NETChargeInfo.Status FAILED
public static NETChargeInfo.Status[] values()
for (NETChargeInfo.Status c : NETChargeInfo.Status.values()) System.out.println(c);
public static NETChargeInfo.Status valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null