Enum Topology.SupportedOperation
- java.lang.Object
-
- java.lang.Enum<Topology.SupportedOperation>
-
- org.apache.syncope.client.console.topology.Topology.SupportedOperation
-
- All Implemented Interfaces:
Serializable
,Comparable<Topology.SupportedOperation>
- Enclosing class:
- Topology
protected static enum Topology.SupportedOperation extends Enum<Topology.SupportedOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_ENDPOINT
CHECK_CONNECTOR
CHECK_RESOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Topology.SupportedOperation
valueOf(String name)
Returns the enum constant of this type with the specified name.static Topology.SupportedOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECK_RESOURCE
public static final Topology.SupportedOperation CHECK_RESOURCE
-
CHECK_CONNECTOR
public static final Topology.SupportedOperation CHECK_CONNECTOR
-
ADD_ENDPOINT
public static final Topology.SupportedOperation ADD_ENDPOINT
-
-
Method Detail
-
values
public static Topology.SupportedOperation[] 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 (Topology.SupportedOperation c : Topology.SupportedOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Topology.SupportedOperation 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
-
-