public enum FieldState extends Enum<FieldState>
Modifier and Type | Field and Description |
---|---|
String |
description |
Modifier and Type | Method and Description |
---|---|
static FieldState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldState INITIAL
public static final FieldState INJECTED
public static final FieldState CONDUIT
public final String description
public static FieldState[] values()
for (FieldState c : FieldState.values()) System.out.println(c);
public static FieldState 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 null5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.