public static enum ProgramOptions.PasswordLocation extends Enum<ProgramOptions.PasswordLocation>
| Enum Constant and Description |
|---|
DEFAULT |
LOCAL_PASSWORD |
LOGIN_FILE |
PASSWORD_FILE |
USER |
| Modifier and Type | Method and Description |
|---|---|
static ProgramOptions.PasswordLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgramOptions.PasswordLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramOptions.PasswordLocation DEFAULT
public static final ProgramOptions.PasswordLocation USER
public static final ProgramOptions.PasswordLocation PASSWORD_FILE
public static final ProgramOptions.PasswordLocation LOGIN_FILE
public static final ProgramOptions.PasswordLocation LOCAL_PASSWORD
public static ProgramOptions.PasswordLocation[] values()
for (ProgramOptions.PasswordLocation c : ProgramOptions.PasswordLocation.values()) System.out.println(c);
public static ProgramOptions.PasswordLocation 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 © 2017–2020 Eclipse Foundation. All rights reserved.