public enum ImplementationType extends java.lang.Enum<ImplementationType>
Enum Constant and Description |
---|
NATIVE
Native implementation means that the API has been implemented by the nLogin kernel.
|
PROXY
Proxy implementation means that the API has been implemented through a proxy that communicates to the nLogin core.
|
Modifier and Type | Method and Description |
---|---|
static ImplementationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImplementationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImplementationType NATIVE
Situations that the implementation is native:
public static final ImplementationType PROXY
Situations that the implementation is by proxy:
public static ImplementationType[] values()
for (ImplementationType c : ImplementationType.values()) System.out.println(c);
public static ImplementationType 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 null