com.flat502.rox.processing
Enum SSLConfiguration.ClientAuth

java.lang.Object
  extended by java.lang.Enum<SSLConfiguration.ClientAuth>
      extended by com.flat502.rox.processing.SSLConfiguration.ClientAuth
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SSLConfiguration.ClientAuth>
Enclosing class:
SSLConfiguration

public static enum SSLConfiguration.ClientAuth
extends java.lang.Enum<SSLConfiguration.ClientAuth>


Enum Constant Summary
NONE
           
REQUEST
           
REQUIRE
           
 
Method Summary
static SSLConfiguration.ClientAuth valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SSLConfiguration.ClientAuth[] 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

NONE

public static final SSLConfiguration.ClientAuth NONE

REQUEST

public static final SSLConfiguration.ClientAuth REQUEST

REQUIRE

public static final SSLConfiguration.ClientAuth REQUIRE
Method Detail

values

public static final SSLConfiguration.ClientAuth[] 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(SSLConfiguration.ClientAuth c : SSLConfiguration.ClientAuth.values())
        System.out.println(c);

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

valueOf

public static SSLConfiguration.ClientAuth 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