Package org.wildfly.iiop.openjdk
Enum IIOPInitializer
- java.lang.Object
-
- java.lang.Enum<IIOPInitializer>
-
- org.wildfly.iiop.openjdk.IIOPInitializer
-
- All Implemented Interfaces:
Serializable,Comparable<IIOPInitializer>
public enum IIOPInitializer extends Enum<IIOPInitializer>
Enumeration of
ORBinitializer groups. Each member contains one or more initializer classes that belong to a specific group.- Author:
- Stefan Guilhen, Tomasz Adamski
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SECURITY_ELYTRONSPEC_TRANSACTIONSTRANSACTIONSUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getInitializerClasses()Obtains the class names of the initializers that are part of this group.StringgetInitializerName()Obtains the name of this initializer group.static IIOPInitializervalueOf(String name)Returns the enum constant of this type with the specified name.static IIOPInitializer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final IIOPInitializer UNKNOWN
-
SECURITY_ELYTRON
public static final IIOPInitializer SECURITY_ELYTRON
-
TRANSACTIONS
public static final IIOPInitializer TRANSACTIONS
-
SPEC_TRANSACTIONS
public static final IIOPInitializer SPEC_TRANSACTIONS
-
-
Method Detail
-
values
public static IIOPInitializer[] 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 (IIOPInitializer c : IIOPInitializer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IIOPInitializer 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
-
getInitializerName
public String getInitializerName()
Obtains the name of this initializer group.
- Returns:
- a
Stringthat represents the initializer group name.
-
getInitializerClasses
public String[] getInitializerClasses()
Obtains the class names of the initializers that are part of this group.
- Returns:
- a
String[]containing the fully-qualified class names of the initializers.
-
-