org.openliberty.xmltooling.sasl
Enum Status.StatusCode

java.lang.Object
  extended by java.lang.Enum<Status.StatusCode>
      extended by org.openliberty.xmltooling.sasl.Status.StatusCode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Status.StatusCode>
Enclosing class:
Status

public static enum Status.StatusCode
extends java.lang.Enum<Status.StatusCode>

Author:
tguion (see liberty-idwsf-soap-binding-2.0-errata-v1.0.pdf)

Enum Constant Summary
INVALIDACTOR
           
INVALIDMUSTUNDERSTAND
           
 
Field Summary
private  java.lang.String code
           
private  java.lang.String semantics
           
private  java.lang.String source
           
 
Method Summary
 java.lang.String getCode()
           
 java.lang.String getSemantics()
           
 java.lang.String getSource()
           
 boolean isClientSource()
           
 boolean isServerSource()
           
static Status.StatusCode valueOf(java.lang.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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INVALIDACTOR

public static final Status.StatusCode INVALIDACTOR

INVALIDMUSTUNDERSTAND

public static final Status.StatusCode INVALIDMUSTUNDERSTAND
Field Detail

code

private final java.lang.String code

semantics

private final java.lang.String semantics

source

private final java.lang.String source
Method Detail

values

public static final Status.StatusCode[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(Status.StatusCode c : Status.StatusCode.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static Status.StatusCode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

isClientSource

public boolean isClientSource()

isServerSource

public boolean isServerSource()

getCode

public java.lang.String getCode()
Returns:
the code

getSemantics

public java.lang.String getSemantics()
Returns:
the semantics

getSource

public java.lang.String getSource()
Returns:
the source