public enum AccessorStyle extends Enum<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 AccessorStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessorStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessorStyle JAVABEAN
public static final AccessorStyle EXPLICIT
public static final AccessorStyle PUBLIC
public static AccessorStyle[] values()
for (AccessorStyle c : AccessorStyle.values()) System.out.println(c);
public static 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 nullCopyright © 2005–2021. All rights reserved.