public enum EasyBeanExposure extends java.lang.Enum<EasyBeanExposure>
Enum Constant and Description |
---|
ALL
Expose any annotated public fields, methods and constructors and any unannotated public fields (read & write) and methods.
|
ANNOTATED
Only exposure public fields, methods and constructors annotated with
EasyBeanAttribute ,
EasyBeanOperation or EasyBeanConstructor . |
ANNOTATED_AND_READ_ONLY
Expose any annotated public fields, methods and constructors and any unannotated public fields (read only) and getter methods.
|
Modifier and Type | Method and Description |
---|---|
static EasyBeanExposure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EasyBeanExposure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EasyBeanExposure ANNOTATED
EasyBeanAttribute
,
EasyBeanOperation
or EasyBeanConstructor
.public static final EasyBeanExposure ANNOTATED_AND_READ_ONLY
public static final EasyBeanExposure ALL
public static EasyBeanExposure[] values()
for (EasyBeanExposure c : EasyBeanExposure.values()) System.out.println(c);
public static EasyBeanExposure valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null