public static enum SLAEvent.SLAStatus extends Enum<SLAEvent.SLAStatus>
Enum Constant and Description |
---|
IN_PROCESS |
MET |
MISS |
NOT_STARTED |
Modifier and Type | Method and Description |
---|---|
static SLAEvent.SLAStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SLAEvent.SLAStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SLAEvent.SLAStatus NOT_STARTED
public static final SLAEvent.SLAStatus IN_PROCESS
public static final SLAEvent.SLAStatus MET
public static final SLAEvent.SLAStatus MISS
public static SLAEvent.SLAStatus[] values()
for (SLAEvent.SLAStatus c : SLAEvent.SLAStatus.values()) System.out.println(c);
public static SLAEvent.SLAStatus 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 © 2018 Apache Software Foundation. All rights reserved.