Enum InterceptorExtensionsProvider.Metadata
- java.lang.Object
-
- java.lang.Enum<InterceptorExtensionsProvider.Metadata>
-
- com.opencloud.slee.resources.sis.script.interceptors.InterceptorExtensionsProvider.Metadata
-
- All Implemented Interfaces:
Serializable
,Comparable<InterceptorExtensionsProvider.Metadata>
- Enclosing interface:
- InterceptorExtensionsProvider
public static enum InterceptorExtensionsProvider.Metadata extends Enum<InterceptorExtensionsProvider.Metadata>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NAME
Enum containing the name string of the Interceptor Extensions Resource Adaptor Type as the associated value.VENDOR
Enum containing the vendor string of the Interceptor Extensions Resource Adaptor Type as the associated value.VERSION
Enum containing the version string of the Interceptor Extensions Resource Adaptor Type as the associated value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
Get the value associated with this enum.String
toString()
Returns the value associated with this enum.static InterceptorExtensionsProvider.Metadata
valueOf(String name)
Returns the enum constant of this type with the specified name.static InterceptorExtensionsProvider.Metadata[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final InterceptorExtensionsProvider.Metadata NAME
Enum containing the name string of the Interceptor Extensions Resource Adaptor Type as the associated value.
-
VENDOR
public static final InterceptorExtensionsProvider.Metadata VENDOR
Enum containing the vendor string of the Interceptor Extensions Resource Adaptor Type as the associated value.
-
VERSION
public static final InterceptorExtensionsProvider.Metadata VERSION
Enum containing the version string of the Interceptor Extensions Resource Adaptor Type as the associated value.
-
-
Method Detail
-
values
public static InterceptorExtensionsProvider.Metadata[] 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 (InterceptorExtensionsProvider.Metadata c : InterceptorExtensionsProvider.Metadata.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterceptorExtensionsProvider.Metadata 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
-
getValue
public String getValue()
Get the value associated with this enum.- Returns:
- the value associated with this enum.
-
toString
public String toString()
Returns the value associated with this enum.- Overrides:
toString
in classEnum<InterceptorExtensionsProvider.Metadata>
- Returns:
- the value associated with this enum.
-
-