public enum PointerSize extends Enum<PointerSize>
| Modifier and Type | Method and Description |
|---|---|
int |
bitSize() |
int |
byteSize() |
static PointerSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PointerSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointerSize INT
public static final PointerSize LONG
public static PointerSize[] values()
for (PointerSize c : PointerSize.values()) System.out.println(c);
public static PointerSize 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 nullpublic int bitSize()
public int byteSize()
Copyright © 2015–2024. All rights reserved.