public static enum AggregateTrustManager.Strategy extends Enum<AggregateTrustManager.Strategy>
Enum Constant and Description |
---|
ALL
all trust managers must succeed.
|
ANY
any trust manager must succeed.
|
Modifier and Type | Method and Description |
---|---|
static AggregateTrustManager.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateTrustManager.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateTrustManager.Strategy ALL
public static final AggregateTrustManager.Strategy ANY
public static AggregateTrustManager.Strategy[] values()
for (AggregateTrustManager.Strategy c : AggregateTrustManager.Strategy.values()) System.out.println(c);
public static AggregateTrustManager.Strategy 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 nullCopyright © 2003-2019 Virginia Tech. All Rights Reserved.