public enum EnclosedType extends Enum<EnclosedType>
reserveLambda
methods in SizeEstimator
.Enum Constant and Description |
---|
BOOLEAN
Represents a Java boolean.
|
BYTE
Represents a Java byte.
|
CHAR
Represents a Java char.
|
DOUBLE
Represents a Java double.
|
FLOAT
Represents a Java float.
|
INT
Represents a Java int.
|
LONG
Represents a Java long.
|
REFERENCE
Represents a reference to any object.
|
SHORT
Represents a Java short.
|
Modifier and Type | Method and Description |
---|---|
static EnclosedType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnclosedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnclosedType BOOLEAN
public static final EnclosedType BYTE
public static final EnclosedType CHAR
public static final EnclosedType SHORT
public static final EnclosedType INT
public static final EnclosedType FLOAT
public static final EnclosedType LONG
public static final EnclosedType DOUBLE
public static final EnclosedType REFERENCE
public static EnclosedType[] values()
for (EnclosedType c : EnclosedType.values()) System.out.println(c);
public static EnclosedType valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.aicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2022 aicas GmbH. All Rights Reserved.