Enum ThreadPoolResourceDefinition
- java.lang.Object
-
- java.lang.Enum<ThreadPoolResourceDefinition>
-
- org.infinispan.server.jgroups.subsystem.ThreadPoolResourceDefinition
-
- All Implemented Interfaces:
Serializable,Comparable<ThreadPoolResourceDefinition>,org.jboss.as.controller.ResourceDefinition
public enum ThreadPoolResourceDefinition extends Enum<ThreadPoolResourceDefinition> implements org.jboss.as.controller.ResourceDefinition
- Version:
- Aug 2014
- Author:
- Radoslav Husar, Paul Ferraro
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<org.jboss.as.controller.access.management.AccessConstraintDefinition>getAccessConstraints()org.jboss.as.controller.descriptions.DescriptionProvidergetDescriptionProvider(org.jboss.as.controller.registry.ImmutableManagementResourceRegistration registration)org.jboss.as.controller.PathElementgetPathElement()booleanisOrderedChild()booleanisRuntime()voidregisterAttributes(org.jboss.as.controller.registry.ManagementResourceRegistration registration)voidregisterChildren(org.jboss.as.controller.registry.ManagementResourceRegistration registration)voidregisterNotifications(org.jboss.as.controller.registry.ManagementResourceRegistration registration)voidregisterOperations(org.jboss.as.controller.registry.ManagementResourceRegistration registration)static ThreadPoolResourceDefinitionvalueOf(String name)Returns the enum constant of this type with the specified name.static ThreadPoolResourceDefinition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final ThreadPoolResourceDefinition DEFAULT
-
OOB
@Deprecated public static final ThreadPoolResourceDefinition OOB
Deprecated.Ignored since 9.0/JGroups 4.0
-
INTERNAL
@Deprecated public static final ThreadPoolResourceDefinition INTERNAL
Deprecated.Ignored since 9.0/JGroups 4.0
-
TIMER
@Deprecated public static final ThreadPoolResourceDefinition TIMER
Deprecated.Ignored since 9.0/JGroups 4.0
-
-
Method Detail
-
values
public static ThreadPoolResourceDefinition[] 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 (ThreadPoolResourceDefinition c : ThreadPoolResourceDefinition.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreadPoolResourceDefinition 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
-
getPathElement
public org.jboss.as.controller.PathElement getPathElement()
- Specified by:
getPathElementin interfaceorg.jboss.as.controller.ResourceDefinition
-
getDescriptionProvider
public org.jboss.as.controller.descriptions.DescriptionProvider getDescriptionProvider(org.jboss.as.controller.registry.ImmutableManagementResourceRegistration registration)
- Specified by:
getDescriptionProviderin interfaceorg.jboss.as.controller.ResourceDefinition
-
registerOperations
public void registerOperations(org.jboss.as.controller.registry.ManagementResourceRegistration registration)
- Specified by:
registerOperationsin interfaceorg.jboss.as.controller.ResourceDefinition
-
registerAttributes
public void registerAttributes(org.jboss.as.controller.registry.ManagementResourceRegistration registration)
- Specified by:
registerAttributesin interfaceorg.jboss.as.controller.ResourceDefinition
-
registerNotifications
public void registerNotifications(org.jboss.as.controller.registry.ManagementResourceRegistration registration)
- Specified by:
registerNotificationsin interfaceorg.jboss.as.controller.ResourceDefinition
-
registerChildren
public void registerChildren(org.jboss.as.controller.registry.ManagementResourceRegistration registration)
- Specified by:
registerChildrenin interfaceorg.jboss.as.controller.ResourceDefinition
-
getAccessConstraints
public List<org.jboss.as.controller.access.management.AccessConstraintDefinition> getAccessConstraints()
- Specified by:
getAccessConstraintsin interfaceorg.jboss.as.controller.ResourceDefinition
-
isRuntime
public boolean isRuntime()
- Specified by:
isRuntimein interfaceorg.jboss.as.controller.ResourceDefinition
-
isOrderedChild
public boolean isOrderedChild()
- Specified by:
isOrderedChildin interfaceorg.jboss.as.controller.ResourceDefinition
-
-