public static enum SLAEvent.EventStatus extends Enum<SLAEvent.EventStatus>
Enum Constant and Description |
---|
DURATION_MET |
DURATION_MISS |
END_MET |
END_MISS |
START_MET |
START_MISS |
Modifier and Type | Method and Description |
---|---|
static SLAEvent.EventStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SLAEvent.EventStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SLAEvent.EventStatus START_MET
public static final SLAEvent.EventStatus START_MISS
public static final SLAEvent.EventStatus DURATION_MET
public static final SLAEvent.EventStatus DURATION_MISS
public static final SLAEvent.EventStatus END_MET
public static final SLAEvent.EventStatus END_MISS
public static SLAEvent.EventStatus[] values()
for (SLAEvent.EventStatus c : SLAEvent.EventStatus.values()) System.out.println(c);
public static SLAEvent.EventStatus 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.