Package com.wombat.mamda
Class MamdaFieldState
- java.lang.Object
-
- com.wombat.mamda.MamdaFieldState
-
public class MamdaFieldState extends java.lang.ObjectAn enumeration representing field state. MODIFIED (0) value indicates the field was updated in last tick NOT MODIFIED (1) value indicate that there was no change in the last tick NOT_INITIALISED (2) value indicates that the field has never been updated
-
-
Field Summary
Fields Modifier and Type Field Description static shortMODIFIEDstatic shortNOT_INITIALISEDstatic shortNOT_MODIFIED
-
Constructor Summary
Constructors Constructor Description MamdaFieldState()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description shortgetState()voidsetState(short state)static java.lang.StringtoString(short fieldState)Convert a MamdaFieldState to an appropriate, displayable string.
-
-
-
Field Detail
-
NOT_INITIALISED
public static final short NOT_INITIALISED
- See Also:
- Constant Field Values
-
NOT_MODIFIED
public static final short NOT_MODIFIED
- See Also:
- Constant Field Values
-
MODIFIED
public static final short MODIFIED
- See Also:
- Constant Field Values
-
-