Package com.querydsl.core.alias
Enum MethodType
- All Implemented Interfaces:
Serializable,Comparable<MethodType>,java.lang.constant.Constable
MethodType defines the supported method types used in the Alias functionality- Author:
- tiwe
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription__mappedPath invocationgetter invocationhashCode invocationList#get(int) invocationMap#get(Object) invocationScala getter invocationScala list apply invocationScala map apply invocationCollection#size() invocationtoString invocation -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable MethodTypestatic MethodTypeReturns the enum constant of this type with the specified name.static MethodType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
GET_MAPPED_PATH
__mappedPath invocation -
GETTER
getter invocation -
HASH_CODE
hashCode invocation -
LIST_ACCESS
List#get(int) invocation -
MAP_ACCESS
Map#get(Object) invocation -
SIZE
Collection#size() invocation -
TO_STRING
toString invocation -
SCALA_GETTER
Scala getter invocation -
SCALA_LIST_ACCESS
Scala list apply invocation -
SCALA_MAP_ACCESS
Scala map apply invocation
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
get
-