public enum CustomRenderer extends Enum<CustomRenderer>
| Enum Constant and Description |
|---|
file_size |
icon |
integer_dropdown |
password |
text_area |
| Modifier and Type | Method and Description |
|---|---|
static CustomRenderer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomRenderer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomRenderer text_area
public static final CustomRenderer integer_dropdown
public static final CustomRenderer password
public static final CustomRenderer file_size
public static final CustomRenderer icon
public static CustomRenderer[] values()
for (CustomRenderer c : CustomRenderer.values()) System.out.println(c);
public static CustomRenderer 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 © 2019–2021 personify. All rights reserved.