public enum Display extends Enum<Display>
PropertyEditor
.Modifier and Type | Field and Description |
---|---|
static Display |
BLOCK
Deprecated.
Since Tobago 3.0.0 Please use
block |
static Display |
INLINE
Deprecated.
Since Tobago 3.0.0 Please use
inline |
static Display |
NONE
Deprecated.
Since Tobago 3.0.0 Please use
none |
static String |
STRING_BLOCK
Internal constant to use in annotations.
|
static String |
STRING_INLINE
Internal constant to use in annotations.
|
static String |
STRING_NONE
Internal constant to use in annotations.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Deprecated.
Since Tobago 3.0.0 Please use
Display:name |
static Display |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Display[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Display block
public static final Display inline
public static final Display none
public static final String STRING_BLOCK
block
public static final String STRING_INLINE
inline
public static final String STRING_NONE
none
public static Display[] values()
for (Display c : Display.values()) System.out.println(c);
public static Display 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 getValue()
Display:name
Copyright © 2002–2015 The Apache Software Foundation. All rights reserved.