public enum ControllerType extends Enum<ControllerType>
| Enum Constant and Description |
|---|
ENTITY
Entity controller type.
|
PROPERTY
PROPERTY controller type.
|
SCHEMA
Schema controller type.
|
SEARCH
Search controller type.
|
| Modifier and Type | Method and Description |
|---|---|
static ControllerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControllerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControllerType ENTITY
public static final ControllerType SEARCH
public static final ControllerType SCHEMA
public static final ControllerType PROPERTY
public static ControllerType[] values()
for (ControllerType c : ControllerType.values()) System.out.println(c);
public static ControllerType 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 © 2021. All rights reserved.