public enum EasyBeanOpenTypeExposure extends java.lang.Enum<EasyBeanOpenTypeExposure>
Enum Constant and Description |
---|
ALL
Expose the data in all public fields and getter methods.
|
ANNOTATED
Only exposure the data in public fields and getter methods and constructors annotated with
EasyBeanOpenTypeAttribute . |
Modifier and Type | Method and Description |
---|---|
static EasyBeanOpenTypeExposure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EasyBeanOpenTypeExposure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EasyBeanOpenTypeExposure ANNOTATED
EasyBeanOpenTypeAttribute
.public static final EasyBeanOpenTypeExposure ALL
public static EasyBeanOpenTypeExposure[] values()
for (EasyBeanOpenTypeExposure c : EasyBeanOpenTypeExposure.values()) System.out.println(c);
public static EasyBeanOpenTypeExposure 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