public enum PropertyType extends Enum<PropertyType>
PropertyType
defines the Path type to be used for a Domain propertyEnum Constant and Description |
---|
COMPARABLE
Comparable
|
DATE
Date
|
DATETIME
Datetime
|
ENTITY
Entity
|
ENUM
Enum
|
NONE
None
|
NUMERIC
Numeric
|
SIMPLE
Simple
|
STRING
String
|
TIME
Time
|
Modifier and Type | Method and Description |
---|---|
static PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType COMPARABLE
public static final PropertyType ENUM
public static final PropertyType DATE
public static final PropertyType DATETIME
public static final PropertyType NONE
public static final PropertyType NUMERIC
public static final PropertyType SIMPLE
public static final PropertyType STRING
public static final PropertyType TIME
public static final PropertyType ENTITY
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType 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 © 2007–2016 Querydsl. All rights reserved.