public enum FollowupFlagStatus extends java.lang.Enum<FollowupFlagStatus>
Enum Constant and Description |
---|
COMPLETE
complete
|
FLAGGED
flagged
|
NOT_FLAGGED
not Flagged
|
UNEXPECTED_VALUE
For FollowupFlagStatus values that were not expected from the service
|
Modifier and Type | Method and Description |
---|---|
static FollowupFlagStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FollowupFlagStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FollowupFlagStatus NOT_FLAGGED
public static final FollowupFlagStatus COMPLETE
public static final FollowupFlagStatus FLAGGED
public static final FollowupFlagStatus UNEXPECTED_VALUE
public static FollowupFlagStatus[] values()
for (FollowupFlagStatus c : FollowupFlagStatus.values()) System.out.println(c);
public static FollowupFlagStatus 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