public enum RegisterTypeEnum extends Enum<RegisterTypeEnum>
| Enum Constant and Description |
|---|
AUTO_REGISTER
Auto register.
|
AUTO_REGISTER_BY_DEPLOYER
(INTERNAL) Auto register by deployer.
|
MANUAL_REGISTER
Manual register.
|
NEVER_REGISTER
Never register.
|
| Modifier and Type | Method and Description |
|---|---|
static RegisterTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegisterTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegisterTypeEnum NEVER_REGISTER
public static final RegisterTypeEnum MANUAL_REGISTER
public static final RegisterTypeEnum AUTO_REGISTER_BY_DEPLOYER
public static final RegisterTypeEnum AUTO_REGISTER
public static RegisterTypeEnum[] values()
for (RegisterTypeEnum c : RegisterTypeEnum.values()) System.out.println(c);
public static RegisterTypeEnum 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 nullCopyright © 2011–2020 The Apache Software Foundation. All rights reserved.