public enum PropertyHandling extends Enum<PropertyHandling>
Modifier and Type | Class and Description |
---|---|
static class |
PropertyHandling.Config
Property handling options
|
Enum Constant and Description |
---|
ALL
Inspect fields and methods
|
FIELDS
Inspect fields only
|
JDO
JDO compatibility
|
JPA
JPA compatibility
|
METHODS
Inspect methods only
|
NONE
No member inspection
|
Modifier and Type | Method and Description |
---|---|
abstract PropertyHandling.Config |
getConfig(Class<?> type) |
static PropertyHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyHandling ALL
public static final PropertyHandling FIELDS
public static final PropertyHandling METHODS
public static final PropertyHandling NONE
public static final PropertyHandling JDO
public static final PropertyHandling JPA
public static PropertyHandling[] values()
for (PropertyHandling c : PropertyHandling.values()) System.out.println(c);
public static PropertyHandling 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 abstract PropertyHandling.Config getConfig(Class<?> type)
Copyright © 2007–2016 Querydsl. All rights reserved.