public enum TimedSSLFactories extends Enum<TimedSSLFactories>
Enum Constant and Description |
---|
ABOVE
Attach timing above the SSL layer.
|
BELOW
Attach timing below the SSL layer.
|
Modifier and Type | Method and Description |
---|---|
static TimedSSLFactories |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimedSSLFactories[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimedSSLFactories ABOVE
public static final TimedSSLFactories BELOW
public static TimedSSLFactories[] values()
for (TimedSSLFactories c : TimedSSLFactories.values()) System.out.println(c);
public static TimedSSLFactories 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 null