public enum PropertyAccessType extends Enum<PropertyAccessType>
Enum Constant and Description |
---|
READ_ONLY
Create just a getter, not a mutator.
|
READ_WRITE
Create both a mutator and a getter.
|
WRITE_ONLY
Create just a mutator, not a getter.
|
Modifier and Type | Method and Description |
---|---|
static PropertyAccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyAccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyAccessType READ_ONLY
public static final PropertyAccessType WRITE_ONLY
public static final PropertyAccessType READ_WRITE
public static PropertyAccessType[] values()
for (PropertyAccessType c : PropertyAccessType.values()) System.out.println(c);
public static PropertyAccessType 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 null${project.version} - Copyright © 2003-2015 The Apache Software Foundation.