|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<NumberLabel.STYLE>
com.github.croesch.micro_debug.gui.components.basic.NumberLabel.STYLE
public static enum NumberLabel.STYLE
Different styles to format numbers.
| Enum Constant Summary | |
|---|---|
BINARY
binary (base 2) format |
|
DECIMAL
decimal number format |
|
HEXADECIMAL
hexadecimal (base 16) format |
|
| Method Summary | |
|---|---|
abstract String |
getRepresentation(int num)
Returns the String representation of the given number. |
static NumberLabel.STYLE |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NumberLabel.STYLE[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final NumberLabel.STYLE DECIMAL
public static final NumberLabel.STYLE HEXADECIMAL
public static final NumberLabel.STYLE BINARY
| Method Detail |
|---|
public static NumberLabel.STYLE[] values()
for (NumberLabel.STYLE c : NumberLabel.STYLE.values()) System.out.println(c);
public static NumberLabel.STYLE valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null@NotNull public abstract String getRepresentation(int num)
String representation of the given number.
num - the number to format to String with this number format
String representing the given number in this style
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||