public enum StringDefaultEditor extends Enum<StringDefaultEditor>
Classe Java pour string-default-editor.
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
<simpleType name="string-default-editor">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="inputText"/>
<enumeration value="textArea"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INPUT_TEXT |
TEXT_AREA |
| Modifier and Type | Method and Description |
|---|---|
static StringDefaultEditor |
fromValue(String v) |
String |
value() |
static StringDefaultEditor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringDefaultEditor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringDefaultEditor INPUT_TEXT
public static final StringDefaultEditor TEXT_AREA
public static StringDefaultEditor[] values()
for (StringDefaultEditor c : StringDefaultEditor.values()) System.out.println(c);
public static StringDefaultEditor 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 String value()
public static StringDefaultEditor fromValue(String v)
Copyright © 2015. All rights reserved.