public enum FieldStatus extends Enum<FieldStatus>
Java class for FieldStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FieldStatus"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Supported"/> <enumeration value="Unsupported"/> <enumeration value="Cached"/> <enumeration value="Error"/> <enumeration value="NotFound"/> <enumeration value="BlackList"/> </restriction> </simpleType>
Enum Constant and Description |
---|
BLACK_LIST |
CACHED |
ERROR |
NOT_FOUND |
SUPPORTED |
UNSUPPORTED |
Modifier and Type | Method and Description |
---|---|
static FieldStatus |
fromValue(String v) |
String |
value() |
static FieldStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldStatus SUPPORTED
public static final FieldStatus UNSUPPORTED
public static final FieldStatus CACHED
public static final FieldStatus ERROR
public static final FieldStatus NOT_FOUND
public static final FieldStatus BLACK_LIST
public static FieldStatus[] values()
for (FieldStatus c : FieldStatus.values()) System.out.println(c);
public static FieldStatus 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 value()
public static FieldStatus fromValue(String v)
Copyright © 2018 JBoss by Red Hat. All rights reserved.