Enum DistributableWebXMLDescriptionFactory
- java.lang.Object
-
- java.lang.Enum<DistributableWebXMLDescriptionFactory>
-
- org.wildfly.extension.clustering.web.DistributableWebXMLDescriptionFactory
-
- All Implemented Interfaces:
Serializable,Comparable<DistributableWebXMLDescriptionFactory>,Function<DistributableWebSubsystemSchema,org.jboss.as.controller.PersistentResourceXMLDescription>
public enum DistributableWebXMLDescriptionFactory extends Enum<DistributableWebXMLDescriptionFactory> implements Function<DistributableWebSubsystemSchema,org.jboss.as.controller.PersistentResourceXMLDescription>
XML description factory for the distributable-web subsystem.- Author:
- Paul Ferraro
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.jboss.as.controller.PersistentResourceXMLDescriptionapply(DistributableWebSubsystemSchema schema)static DistributableWebXMLDescriptionFactoryvalueOf(String name)Returns the enum constant of this type with the specified name.static DistributableWebXMLDescriptionFactory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final DistributableWebXMLDescriptionFactory INSTANCE
-
-
Method Detail
-
values
public static DistributableWebXMLDescriptionFactory[] 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 (DistributableWebXMLDescriptionFactory c : DistributableWebXMLDescriptionFactory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DistributableWebXMLDescriptionFactory 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
-
apply
public org.jboss.as.controller.PersistentResourceXMLDescription apply(DistributableWebSubsystemSchema schema)
- Specified by:
applyin interfaceFunction<DistributableWebSubsystemSchema,org.jboss.as.controller.PersistentResourceXMLDescription>
-
-