public enum ComponentPropertyMode extends Enum<ComponentPropertyMode>
| Enum Constant and Description |
|---|
ALL
Force values on all properties and abort if a property cannot be set because no source is available
|
KNOWN
Set values on all properties for which a value can be found; ignore all else.
|
NONE
Do nothing with properties that are not explicitly named
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentPropertyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentPropertyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentPropertyMode NONE
public static final ComponentPropertyMode ALL
public static final ComponentPropertyMode KNOWN
public static ComponentPropertyMode[] values()
for (ComponentPropertyMode c : ComponentPropertyMode.values()) System.out.println(c);
public static ComponentPropertyMode 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 © 2017 etc.to. All rights reserved.