public static enum TypeRef.Cardinality extends java.lang.Enum<TypeRef.Cardinality>
| Modifier and Type | Method and Description |
|---|---|
static TypeRef.Cardinality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeRef.Cardinality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeRef.Cardinality OPTIONAL
public static final TypeRef.Cardinality REQUIRED
public static final TypeRef.Cardinality REPEATED
public static TypeRef.Cardinality[] values()
for (TypeRef.Cardinality c : TypeRef.Cardinality.values()) System.out.println(c);
public static TypeRef.Cardinality 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 null