public enum ChangeType extends Enum<ChangeType>
Specifies change type.
Enum Constant and Description |
---|
ADDED
The added.
|
DELETED
The deleted.
|
INSERTED
The inserted.
|
MODIFIED
The modified.
|
MOVED
Moved.
|
MOVED_AND_RESIZED
The moved and resized.
|
NONE
The none.
|
NOT_MODIFIED
The not modified.
|
RESIZED
Resized.
|
SHIFTED_AND_RESIZED
The shifted and resized.
|
STYLE_CHANGED
Style changed.
|
Modifier and Type | Method and Description |
---|---|
static ChangeType |
fromInt(int intValue) |
static ChangeType |
fromString(String toStringValue) |
int |
toInt() |
String |
toString() |
static ChangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeType ADDED
The added.
public static final ChangeType DELETED
The deleted.
public static final ChangeType INSERTED
The inserted.
public static final ChangeType MODIFIED
The modified.
public static final ChangeType MOVED
Moved.
public static final ChangeType MOVED_AND_RESIZED
The moved and resized.
public static final ChangeType NONE
The none.
public static final ChangeType NOT_MODIFIED
The not modified.
public static final ChangeType RESIZED
Resized.
public static final ChangeType SHIFTED_AND_RESIZED
The shifted and resized.
public static final ChangeType STYLE_CHANGED
Style changed.
public static ChangeType fromInt(int intValue)
public static ChangeType fromString(String toStringValue)
public int toInt()
public String toString()
toString
in class Enum<ChangeType>
public static ChangeType 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 static ChangeType[] values()
for (ChangeType c : ChangeType.values()) System.out.println(c);
Copyright © 2023. All rights reserved.