public static enum JrpcgenDeclaration.Kind extends Enum<JrpcgenDeclaration.Kind>
| Enum Constant and Description |
|---|
DYNAMICVECTOR
Indicates that a vector (an array) with dynamic (or unknown) size
is declared.
|
FIXEDVECTOR
Indicates that a vector (an array) with fixed size is declared.
|
INDIRECTION
Indicates that an indirection (reference, pointer, whatever you like
to call it nowadays) is declared.
|
SCALAR
Indicates that a scalar is declared.
|
| Modifier and Type | Method and Description |
|---|---|
static JrpcgenDeclaration.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JrpcgenDeclaration.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JrpcgenDeclaration.Kind SCALAR
public static final JrpcgenDeclaration.Kind FIXEDVECTOR
public static final JrpcgenDeclaration.Kind DYNAMICVECTOR
public static final JrpcgenDeclaration.Kind INDIRECTION
public static JrpcgenDeclaration.Kind[] values()
for (JrpcgenDeclaration.Kind c : JrpcgenDeclaration.Kind.values()) System.out.println(c);
public static JrpcgenDeclaration.Kind 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 © 2025. All rights reserved.