public static enum PropertyHandling.Config extends java.lang.Enum<PropertyHandling.Config>
Modifier and Type | Method and Description |
---|---|
boolean |
isFields() |
boolean |
isMethods() |
static PropertyHandling.Config |
of(boolean fields,
boolean methods,
PropertyHandling.Config defaultConfig) |
static PropertyHandling.Config |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyHandling.Config[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyHandling.Config ALL
public static final PropertyHandling.Config FIELDS
public static final PropertyHandling.Config METHODS
public static final PropertyHandling.Config NONE
public static PropertyHandling.Config[] values()
for (PropertyHandling.Config c : PropertyHandling.Config.values()) System.out.println(c);
public static PropertyHandling.Config valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isFields()
public boolean isMethods()
public static PropertyHandling.Config of(boolean fields, boolean methods, PropertyHandling.Config defaultConfig)
Copyright © 2007–2021 Querydsl. All rights reserved.