public static enum Status.StatusCode extends Enum<Status.StatusCode>
| Enum Constant and Description |
|---|
INVALIDACTOR |
INVALIDMUSTUNDERSTAND |
| Modifier and Type | Field and Description |
|---|---|
private String |
code |
private String |
semantics |
private String |
source |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
String |
getSemantics() |
String |
getSource() |
boolean |
isClientSource() |
boolean |
isServerSource() |
static Status.StatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status.StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status.StatusCode INVALIDACTOR
public static final Status.StatusCode INVALIDMUSTUNDERSTAND
private final String code
private final String semantics
private final String source
public static Status.StatusCode[] values()
for (Status.StatusCode c : Status.StatusCode.values()) System.out.println(c);
public static Status.StatusCode 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 boolean isClientSource()
public boolean isServerSource()
public String getCode()
public String getSemantics()
public String getSource()
Copyright © 1999–2015. All rights reserved.