public enum TsonNumberLayout extends Enum<TsonNumberLayout>
| Enum Constant and Description |
|---|
BINARY |
DECIMAL |
HEXADECIMAL |
OCTAL |
| Modifier and Type | Method and Description |
|---|---|
int |
radix() |
static TsonNumberLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TsonNumberLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TsonNumberLayout BINARY
public static final TsonNumberLayout DECIMAL
public static final TsonNumberLayout OCTAL
public static final TsonNumberLayout HEXADECIMAL
public static TsonNumberLayout[] values()
for (TsonNumberLayout c : TsonNumberLayout.values()) System.out.println(c);
public static TsonNumberLayout 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 radix()
Copyright © 2025 vpc open source initiative. All rights reserved.