public static enum N.Type extends Enum<N.Type>
| Modifier and Type | Method and Description |
|---|---|
boolean |
eq(N.Type type) |
boolean |
gt(N.Type type) |
boolean |
lt(N.Type type) |
static N.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static N.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final N.Type BYTE
public static final N.Type SHORT
public static final N.Type INT
public static final N.Type LONG
public static final N.Type FLOAT
public static final N.Type DOUBLE
public static N.Type[] values()
for (N.Type c : N.Type.values()) System.out.println(c);
public static N.Type 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 boolean lt(N.Type type)
public boolean gt(N.Type type)
public boolean eq(N.Type type)
Copyright © 2017. All Rights Reserved.