Package oracle.as.scheduler
Enum Class MetadataService.CustomizableProperty
java.lang.Object
java.lang.Enum<MetadataService.CustomizableProperty>
oracle.as.scheduler.MetadataService.CustomizableProperty
- All Implemented Interfaces:
Serializable,Comparable<MetadataService.CustomizableProperty>,java.lang.constant.Constable
- Enclosing interface:
- MetadataService
public static enum MetadataService.CustomizableProperty
extends Enum<MetadataService.CustomizableProperty>
Enum of properties that can be customized.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic final MetadataService.CustomizablePropertyGets the CustomizableProperty for a string representing the property name.final StringgetName()Gets the property name for this customizable property.static final MetadataService.CustomizablePropertygetProperty(String name) Gets the CustomizableProperty for a string representing the property name.final ClassgetType()Gets the data type for this customizable property.final StringtoString()Equivalent togetName.Returns the enum constant of this class with the specified name.static MetadataService.CustomizableProperty[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
Retries
-
Priority
-
RequestCategory
-
EnableTrace
-
EnableTimeStatistics
-
AsyncRequestTimeout
-
LogicalClusterName
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getName
Gets the property name for this customizable property. -
getType
Gets the data type for this customizable property. -
toString
Equivalent togetName.- Overrides:
toStringin classEnum<MetadataService.CustomizableProperty>
-
fromName
Gets the CustomizableProperty for a string representing the property name. A case-sensitive check is made.- Parameters:
name- the string to match. This value should match the value (case-sensitive) returned bygetNamefor one of the enum values.- Returns:
- the CustomizableProperty. This will be
nullifnamedoes not match a supported name.
-
getProperty
Gets the CustomizableProperty for a string representing the property name. A case-insensitive comparision is made.- Parameters:
name- the string to match. This value should match the value (case-insensitive) returned bygetNamefor one of the enum values.- Returns:
- the CustomizableProperty. This will be
nullifnamedoes not match a supported name.
-