public static enum PropertyInformationFilter.PropertyVisibility extends Enum<PropertyInformationFilter.PropertyVisibility> implements Predicate<PropertyInformation>
| Enum Constant and Description |
|---|
READABLE
Publicly readable property.
|
READABLE_WRITABLE
Publicly readable and publicly writable property.
|
WRITABLE
Publicly writable property.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
test(PropertyInformation propertyInformation) |
static PropertyInformationFilter.PropertyVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyInformationFilter.PropertyVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyInformationFilter.PropertyVisibility READABLE
public static final PropertyInformationFilter.PropertyVisibility WRITABLE
public static final PropertyInformationFilter.PropertyVisibility READABLE_WRITABLE
public static PropertyInformationFilter.PropertyVisibility[] values()
for (PropertyInformationFilter.PropertyVisibility c : PropertyInformationFilter.PropertyVisibility.values()) System.out.println(c);
public static PropertyInformationFilter.PropertyVisibility 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 nullpublic boolean test(PropertyInformation propertyInformation)
test in interface Predicate<PropertyInformation>Copyright © 2010–2020 meanbean. All rights reserved.