public enum FlagStatus extends Enum<FlagStatus>
| Modifier and Type | Method and Description |
|---|---|
static FlagStatus |
getMatchingFlag(String jsonVal) |
String |
getSymbol() |
static FlagStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlagStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlagStatus SET
public static final FlagStatus ACCEPTED
public static final FlagStatus REJECTED
public static final FlagStatus NO_SET
public static FlagStatus[] values()
for (FlagStatus c : FlagStatus.values()) System.out.println(c);
public static FlagStatus 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 nullpublic String getSymbol()
public static FlagStatus getMatchingFlag(String jsonVal)
Copyright © 2019 JBoss by Red Hat. All rights reserved.