public enum FormReason extends java.lang.Enum<FormReason>
Enum Constant and Description |
---|
INVALID_CREDENTIALS
The login form is request because the credentials previously entered very
not valid to login to the repository.
|
TIMEOUT
The login form is requested because an existing session has timed out and
the credentials have to be entered again.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns the message set when constructing this instance.
|
static FormReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormReason INVALID_CREDENTIALS
public static final FormReason TIMEOUT
public static FormReason[] values()
for (FormReason c : FormReason.values()) System.out.println(c);
public static FormReason 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 nullpublic java.lang.String toString()
name()
method.toString
in class java.lang.Enum<FormReason>
Copyright © 2022 The Apache Software Foundation. All rights reserved.