public static enum PropertyElement.Accessibility extends Enum<PropertyElement.Accessibility>
| Enum Constant and Description |
|---|
READ_ONLY |
READ_WRITE |
WRITE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static PropertyElement.Accessibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyElement.Accessibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyElement.Accessibility READ_ONLY
public static final PropertyElement.Accessibility WRITE_ONLY
public static final PropertyElement.Accessibility READ_WRITE
public static PropertyElement.Accessibility[] values()
for (PropertyElement.Accessibility c : PropertyElement.Accessibility.values()) System.out.println(c);
public static PropertyElement.Accessibility 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 © 2003–2020 MuleSoft, Inc.. All rights reserved.