Enum SISComponent.ComponentType
- java.lang.Object
-
- java.lang.Enum<SISComponent.ComponentType>
-
- com.opencloud.slee.resources.sis.components.SISComponent.ComponentType
-
- All Implemented Interfaces:
Serializable
,Comparable<SISComponent.ComponentType>
- Enclosing interface:
- SISComponent
public static enum SISComponent.ComponentType extends Enum<SISComponent.ComponentType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPOSITION_ID
EXTENSION_REF
EXTERNAL_PLATFORM
INTERCEPTOR_ID
INTERCEPTOR_REF
MACRO_ID
SERVICE_REF
TRIGGER_ID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SISComponent.ComponentType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SISComponent.ComponentType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MACRO_ID
public static final SISComponent.ComponentType MACRO_ID
-
TRIGGER_ID
public static final SISComponent.ComponentType TRIGGER_ID
-
COMPOSITION_ID
public static final SISComponent.ComponentType COMPOSITION_ID
-
INTERCEPTOR_ID
public static final SISComponent.ComponentType INTERCEPTOR_ID
-
SERVICE_REF
public static final SISComponent.ComponentType SERVICE_REF
-
EXTENSION_REF
public static final SISComponent.ComponentType EXTENSION_REF
-
INTERCEPTOR_REF
public static final SISComponent.ComponentType INTERCEPTOR_REF
-
EXTERNAL_PLATFORM
public static final SISComponent.ComponentType EXTERNAL_PLATFORM
-
-
Method Detail
-
values
public static SISComponent.ComponentType[] 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 (SISComponent.ComponentType c : SISComponent.ComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SISComponent.ComponentType 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
-
-