| java.lang.Object junitx.ddtunit.data.processing.ActionState
ActionState | final class ActionState (Code) | | Class for defining special processing states useful for object instanciation
|
Method Summary | |
public boolean | equals(Object obj) Returns true if this ActionState is the
same as the o argument. | public int | hashCode() Override hashCode. | public String | toString() Overwrite toString() method. |
ASSERT_CREATION | final public static ActionState ASSERT_CREATION(Code) | | Assert parsing type, identifying a standard assertion to parse
|
COLLECTION_CREATION | final public static ActionState COLLECTION_CREATION(Code) | | Collection parsing type, identifying a collection object to parse, e.g. a
list of object values
|
CONTENT_CREATION | final public static ActionState CONTENT_CREATION(Code) | | XML Content parsing type, identifying xml content to parse
|
DATE_CREATION | final public static ActionState DATE_CREATION(Code) | | Date parsing type, identifying a Date object to parse, e.g. a date time
object
|
EXCEPTION_CREATION | final public static ActionState EXCEPTION_CREATION(Code) | | Exception parsing type, identifying a standard expected exception to
parse
|
MAP_CREATION | final public static ActionState MAP_CREATION(Code) | | Map parsing type, identifying a map object to parse, e.g. a list of
object values
|
OBJECT_CREATION | final public static ActionState OBJECT_CREATION(Code) | | Object parsing type, identifying a standard object to parse
|
SUBELEMENT_CREATION | final public static ActionState SUBELEMENT_CREATION(Code) | | Subelement parsing type, identifying a substructure object to parse, e.g.
a field of a value object
|
equals | public boolean equals(Object obj)(Code) | | Returns true if this ActionState is the
same as the o argument.
true if this ActionState is thesame as the o argument. |
hashCode | public int hashCode()(Code) | | Override hashCode.
the Objects hashcode. |
toString | public String toString()(Code) | | Overwrite toString() method.
name of parse type |
|
|