public static enum Parameter.Arity extends java.lang.Enum<Parameter.Arity>
Enum Constant and Description |
---|
ONE |
ONE_OR_MANY |
ZERO_OR_MANY |
ZERO_OR_ONE |
Modifier and Type | Method and Description |
---|---|
static Parameter.Arity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.Arity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.Arity ZERO_OR_ONE
public static final Parameter.Arity ONE
public static final Parameter.Arity ZERO_OR_MANY
public static final Parameter.Arity ONE_OR_MANY
public static Parameter.Arity[] values()
for (Parameter.Arity c : Parameter.Arity.values()) System.out.println(c);
public static Parameter.Arity 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 nullCopyright © 2021 Dassault Systèmes, All Rights Reserved.