public static enum ConfigurationEventTypeLegacy.AccessorStyle extends Enum<ConfigurationEventTypeLegacy.AccessorStyle>
Enum Constant and Description |
---|
EXPLICIT
Expose only the explicitly configured methods and public members as event properties.
|
JAVABEAN
Expose JavaBean-style getter methods only, plus explicitly configured properties.
|
PUBLIC
Expose all public methods and public members as event properties, plus explicitly configured properties.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationEventTypeLegacy.AccessorStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationEventTypeLegacy.AccessorStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationEventTypeLegacy.AccessorStyle JAVABEAN
public static final ConfigurationEventTypeLegacy.AccessorStyle EXPLICIT
public static final ConfigurationEventTypeLegacy.AccessorStyle PUBLIC
public static ConfigurationEventTypeLegacy.AccessorStyle[] values()
for (ConfigurationEventTypeLegacy.AccessorStyle c : ConfigurationEventTypeLegacy.AccessorStyle.values()) System.out.println(c);
public static ConfigurationEventTypeLegacy.AccessorStyle 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 null