public static enum BeanUtils.Visibility extends Enum<BeanUtils.Visibility>
BeanUtils.collectFields(Class, Class, EnumSet, EnumSet).| Enum Constant and Description |
|---|
DEFAULT
Visibility flag that corresponds with java's visibility modifier
default (package protected). |
PRIVATE
Visibility flag that corresponds with java's keyword
private. |
PROTECTED
Visibility flag that corresponds with java's keyword
protected. |
PUBLIC
Visibility flag that corresponds with java's keyword
public. |
| Modifier and Type | Method and Description |
|---|---|
static BeanUtils.Visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanUtils.Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanUtils.Visibility PRIVATE
private.public static final BeanUtils.Visibility DEFAULT
default (package protected).public static final BeanUtils.Visibility PROTECTED
protected.public static final BeanUtils.Visibility PUBLIC
public.public static BeanUtils.Visibility[] values()
for (BeanUtils.Visibility c : BeanUtils.Visibility.values()) System.out.println(c);
public static BeanUtils.Visibility 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 © 2019. All rights reserved.