public enum CanSetReadOnlyStatus extends Enum<CanSetReadOnlyStatus>
CanSetReadOnly
.Enum Constant and Description |
---|
EXCEPTION
Throw a runtime exception.
|
IGNORE
Ignore setting the value.
|
YES
Allow to set the value.
|
Modifier and Type | Method and Description |
---|---|
static CanSetReadOnlyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CanSetReadOnlyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CanSetReadOnlyStatus YES
public static final CanSetReadOnlyStatus IGNORE
public static final CanSetReadOnlyStatus EXCEPTION
public static CanSetReadOnlyStatus[] values()
for (CanSetReadOnlyStatus c : CanSetReadOnlyStatus.values()) System.out.println(c);
public static CanSetReadOnlyStatus 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 © 2002–2016 Gargoyle Software Inc.. All rights reserved.