public static enum InvocationConvention.InvocationArgumentConvention extends Enum<InvocationConvention.InvocationArgumentConvention>
| Enum Constant and Description |
|---|
BLOCK_POSITION |
BOXED_NULLABLE |
FUNCTION |
NEVER_NULL |
NULL_FLAG |
| Modifier and Type | Method and Description |
|---|---|
static InvocationConvention.InvocationArgumentConvention |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvocationConvention.InvocationArgumentConvention[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvocationConvention.InvocationArgumentConvention NEVER_NULL
public static final InvocationConvention.InvocationArgumentConvention BOXED_NULLABLE
public static final InvocationConvention.InvocationArgumentConvention NULL_FLAG
public static final InvocationConvention.InvocationArgumentConvention BLOCK_POSITION
public static final InvocationConvention.InvocationArgumentConvention FUNCTION
public static InvocationConvention.InvocationArgumentConvention[] values()
for (InvocationConvention.InvocationArgumentConvention c : InvocationConvention.InvocationArgumentConvention.values()) System.out.println(c);
public static InvocationConvention.InvocationArgumentConvention 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 © 2012–2022. All rights reserved.