public enum RaiseEventType extends java.lang.Enum<RaiseEventType>
枚举常量和说明 |
---|
FieldChanged
當某個字段的值更新后
|
Initialized
當实体加载
|
ItemAdded
當某個分錄添加后
|
ItemAdding
當某個分錄正在添加中
|
ItemRemoved
當某個分錄被刪除后
|
ItemReset
當某個分錄重置后
|
NormalEvent
普通控件事件触发
|
Reset
當某個分錄重新更新數據或全部刪除后
|
SelectRowChanged
選擇的行發生改變時,這一般發生在單據體具有代理字段的情況下。
|
限定符和类型 | 方法和说明 |
---|---|
static RaiseEventType |
forValue(int value) |
int |
getValue() |
static RaiseEventType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static RaiseEventType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RaiseEventType NormalEvent
public static final RaiseEventType FieldChanged
public static final RaiseEventType Initialized
public static final RaiseEventType ItemAdded
public static final RaiseEventType ItemReset
public static final RaiseEventType ItemRemoved
public static final RaiseEventType Reset
public static final RaiseEventType SelectRowChanged
public static final RaiseEventType ItemAdding
public static RaiseEventType[] values()
for (RaiseEventType c : RaiseEventType.values()) System.out.println(c);
public static RaiseEventType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public int getValue()
public static RaiseEventType forValue(int value)