public enum InvocationError extends Enum<InvocationError>
Java class for InvocationError.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="InvocationError">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Unspec"/>
<enumeration value="Unkn"/>
<enumeration value="Inv"/>
<enumeration value="Oth"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INV
Inv = Invalid Value.
|
OTH
Oth = Other.
|
UNKN
Unkn = Unknown Operation.
|
UNSPEC
Unspec = Unspecified.
|
| Modifier and Type | Method and Description |
|---|---|
static InvocationError |
fromValue(String v) |
String |
value() |
static InvocationError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvocationError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationError UNSPEC
public static final InvocationError UNKN
public static final InvocationError INV
public static final InvocationError OTH
public static InvocationError[] values()
for (InvocationError c : InvocationError.values()) System.out.println(c);
public static InvocationError 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 InvocationError fromValue(String v)
Copyright © 2018. All rights reserved.