Package mks.ci.server.engine
Enum LocalTriggerManager.SUPPORTED_SCHEME
- java.lang.Object
-
- java.lang.Enum<LocalTriggerManager.SUPPORTED_SCHEME>
-
- mks.ci.server.engine.LocalTriggerManager.SUPPORTED_SCHEME
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LocalTriggerManager.SUPPORTED_SCHEME>
- Enclosing class:
- LocalTriggerManager
public static enum LocalTriggerManager.SUPPORTED_SCHEME extends java.lang.Enum<LocalTriggerManager.SUPPORTED_SCHEME>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASIC
BEARER_TOKEN
ISAM
OAUTH2
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalTriggerManager.SUPPORTED_SCHEME
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LocalTriggerManager.SUPPORTED_SCHEME[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEARER_TOKEN
public static final LocalTriggerManager.SUPPORTED_SCHEME BEARER_TOKEN
-
OAUTH2
public static final LocalTriggerManager.SUPPORTED_SCHEME OAUTH2
-
BASIC
public static final LocalTriggerManager.SUPPORTED_SCHEME BASIC
-
ISAM
public static final LocalTriggerManager.SUPPORTED_SCHEME ISAM
-
-
Method Detail
-
values
public static LocalTriggerManager.SUPPORTED_SCHEME[] 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 (LocalTriggerManager.SUPPORTED_SCHEME c : LocalTriggerManager.SUPPORTED_SCHEME.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalTriggerManager.SUPPORTED_SCHEME valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-