public static enum Constants.AuthMode extends Enum<Constants.AuthMode>
Enum Constant and Description |
---|
None |
PKI |
UsernamePassword |
Modifier and Type | Method and Description |
---|---|
static Constants.AuthMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.AuthMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.AuthMode None
public static final Constants.AuthMode PKI
public static final Constants.AuthMode UsernamePassword
public static Constants.AuthMode[] values()
for (Constants.AuthMode c : Constants.AuthMode.values()) System.out.println(c);
public static Constants.AuthMode 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 © 2008–2017 MIL-OSS. All rights reserved.