public enum ORBInitializer extends Enum<ORBInitializer>
Enumeration of ORB
initializer groups. Each member contains one or more initializer classes that belong to a
specific group.
Enum Constant and Description |
---|
SECURITY |
SPEC_TRANSACTIONS |
TRANSACTIONS |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
String[] |
getInitializerClasses()
Obtains the class names of the initializers that are part of this group.
|
String |
getInitializerName()
Obtains the name of this initializer group.
|
static ORBInitializer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ORBInitializer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ORBInitializer UNKNOWN
public static final ORBInitializer SECURITY
public static final ORBInitializer TRANSACTIONS
public static final ORBInitializer SPEC_TRANSACTIONS
public static ORBInitializer[] values()
for (ORBInitializer c : ORBInitializer.values()) System.out.println(c);
public static ORBInitializer valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String getInitializerName()
Obtains the name of this initializer group.
String
that represents the initializer group name.public String[] getInitializerClasses()
Obtains the class names of the initializers that are part of this group.
String[]
containing the fully-qualified class names of the initializers.Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.