public enum PasswordChangePolicy extends Enum<PasswordChangePolicy>
Java class for passwordChangePolicy.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="passwordChangePolicy">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="MAY"/>
<enumeration value="MUST"/>
<enumeration value="MUST_NOT"/>
<enumeration value="MUST_RECOVER"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MAY |
MUST |
MUST_NOT |
MUST_RECOVER |
| Modifier and Type | Method and Description |
|---|---|
static PasswordChangePolicy |
fromValue(String v) |
String |
value() |
static PasswordChangePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasswordChangePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswordChangePolicy MAY
public static final PasswordChangePolicy MUST
public static final PasswordChangePolicy MUST_NOT
public static final PasswordChangePolicy MUST_RECOVER
public static PasswordChangePolicy[] values()
for (PasswordChangePolicy c : PasswordChangePolicy.values()) System.out.println(c);
public static PasswordChangePolicy 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 nullpublic String value()
public static PasswordChangePolicy fromValue(String v)
Copyright © 2011–2021 aiticon GmbH. All rights reserved.