|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<HitFlag>
com.softwarefx.chartfx.server.annotation.HitFlag
public enum HitFlag
HitFlag enumerations.
Enum Constant Summary | |
---|---|
ACTIVATE
Activate. |
|
CAPTURE
Capture. |
|
CURSOR
Cursor. |
|
MODIFY
Modify. |
|
MOVE
Move. |
|
MULTI
Multi. |
|
NO_HIT
No hit. |
|
SELECT
Select. |
|
SIZE
Size. |
|
SIZE_DOWN
SizeDown. |
|
SIZE_LEFT
SizeLeft. |
|
SIZE_RIGHT
SizeRight. |
|
SIZE_UP
SizeUp. |
Method Summary | |
---|---|
static EnumSet<HitFlag> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static HitFlag |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(EnumSet<HitFlag> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(HitFlag value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static HitFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static HitFlag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 HitFlag NO_HIT
public static final HitFlag MOVE
public static final HitFlag SELECT
public static final HitFlag SIZE
public static final HitFlag SIZE_UP
public static final HitFlag SIZE_DOWN
public static final HitFlag SIZE_LEFT
public static final HitFlag SIZE_RIGHT
public static final HitFlag MULTI
public static final HitFlag ACTIVATE
public static final HitFlag MODIFY
public static final HitFlag CAPTURE
public static final HitFlag CURSOR
Method Detail |
---|
public static HitFlag[] values()
for (HitFlag c : HitFlag.values()) System.out.println(c);
public static HitFlag 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 nullpublic static EnumSet<HitFlag> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static HitFlag getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(HitFlag value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<HitFlag> value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |