public enum EntityProperty extends Enum<EntityProperty>
Enum Constant and Description |
---|
IS_VALID_FOR_CREATE |
IS_VALID_FOR_READ |
IS_VALID_FOR_SELECT |
IS_VALID_FOR_UPDATE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static EntityProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityProperty IS_VALID_FOR_CREATE
public static final EntityProperty IS_VALID_FOR_UPDATE
public static final EntityProperty IS_VALID_FOR_READ
public static final EntityProperty IS_VALID_FOR_SELECT
public static EntityProperty[] values()
for (EntityProperty c : EntityProperty.values()) System.out.println(c);
public static EntityProperty 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 toString()
toString
in class Enum<EntityProperty>
Copyright © 2010–2020. All rights reserved.