
public enum PoolStrategy extends java.lang.Enum<PoolStrategy>
| Enum Constant and Description |
|---|
ONE_POOL
ONE_POOL
|
POOL_BY_CRI
POOL_BY_CRI
|
POOL_BY_SUBJECT
POOL_BY_SUBJECT
|
POOL_BY_SUBJECT_AND_CRI
POOL_BY_SUBJECT_AND_CRI
|
REAUTH
REAUTH
|
| Modifier and Type | Method and Description |
|---|---|
static PoolStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PoolStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PoolStrategy POOL_BY_CRI
public static final PoolStrategy POOL_BY_SUBJECT
public static final PoolStrategy POOL_BY_SUBJECT_AND_CRI
public static final PoolStrategy ONE_POOL
public static final PoolStrategy REAUTH
public static PoolStrategy[] values()
for (PoolStrategy c : PoolStrategy.values()) System.out.println(c);
public static PoolStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2014 IronJacamar (http://www.ironjacamar.org)