Enum TokenStoragePageOrder.OrderBy
- java.lang.Object
-
- java.lang.Enum<TokenStoragePageOrder.OrderBy>
-
- jetbrains.buildServer.serverSide.oauth.TokenStoragePageOrder.OrderBy
-
- All Implemented Interfaces:
Serializable
,Comparable<TokenStoragePageOrder.OrderBy>
- Enclosing class:
- TokenStoragePageOrder
public static enum TokenStoragePageOrder.OrderBy extends Enum<TokenStoragePageOrder.OrderBy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTION_NAME
RECORD_CREATION_DATE
TOKEN_NAME
USER_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TokenStoragePageOrder.OrderBy
valueOf(String name)
Returns the enum constant of this type with the specified name.static TokenStoragePageOrder.OrderBy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOKEN_NAME
public static final TokenStoragePageOrder.OrderBy TOKEN_NAME
-
USER_NAME
public static final TokenStoragePageOrder.OrderBy USER_NAME
-
CONNECTION_NAME
public static final TokenStoragePageOrder.OrderBy CONNECTION_NAME
-
RECORD_CREATION_DATE
public static final TokenStoragePageOrder.OrderBy RECORD_CREATION_DATE
-
-
Method Detail
-
values
public static TokenStoragePageOrder.OrderBy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TokenStoragePageOrder.OrderBy c : TokenStoragePageOrder.OrderBy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TokenStoragePageOrder.OrderBy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-