pl.netanel.swt.matrix
Enum Matrix.DropPosition
java.lang.Object
java.lang.Enum<Matrix.DropPosition>
pl.netanel.swt.matrix.Matrix.DropPosition
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Matrix.DropPosition>
- Enclosing class:
- Matrix<X extends java.lang.Number,Y extends java.lang.Number>
public static enum Matrix.DropPosition
- extends java.lang.Enum<Matrix.DropPosition>
Describes drop position for drag and drop moving
Method Summary |
static Matrix.DropPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Matrix.DropPosition[] |
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 |
OUT_BEFORE
public static final Matrix.DropPosition OUT_BEFORE
OUT_AFTER
public static final Matrix.DropPosition OUT_AFTER
BEFORE
public static final Matrix.DropPosition BEFORE
AFTER
public static final Matrix.DropPosition AFTER
IN
public static final Matrix.DropPosition IN
NONE
public static final Matrix.DropPosition NONE
values
public static Matrix.DropPosition[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Matrix.DropPosition c : Matrix.DropPosition.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Matrix.DropPosition valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
Copyright © 2011 netanel.pl. All Rights Reserved.