public static enum CmsDNDHandler.Orientation extends java.lang.Enum<CmsDNDHandler.Orientation>
枚举常量和说明 |
---|
ALL
Drag and drop in all directions.
|
HORIZONTAL
Only horizontal drag and drop, the client-y position will be ignored.
|
VERTICAL
Only vertical drag and drop, the client-x position will be ignored.
|
限定符和类型 | 方法和说明 |
---|---|
static CmsDNDHandler.Orientation |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static CmsDNDHandler.Orientation[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CmsDNDHandler.Orientation ALL
public static final CmsDNDHandler.Orientation HORIZONTAL
public static final CmsDNDHandler.Orientation VERTICAL
public static CmsDNDHandler.Orientation[] values()
for (CmsDNDHandler.Orientation c : CmsDNDHandler.Orientation.values()) System.out.println(c);
public static CmsDNDHandler.Orientation valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。如果该枚举类型没有带有指定名称的常量,
- 则抛出 IllegalArgumentException如果参数为空值,
- 则抛出 NullPointerException