Enum IMendixObjectMember.MemberState
- java.lang.Object
-
- java.lang.Enum<IMendixObjectMember.MemberState>
-
- com.mendix.systemwideinterfaces.core.IMendixObjectMember.MemberState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IMendixObjectMember.MemberState>
- Enclosing interface:
- IMendixObjectMember<T>
public static enum IMendixObjectMember.MemberState extends java.lang.Enum<IMendixObjectMember.MemberState>
Defines the object member states.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IMendixObjectMember.MemberState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IMendixObjectMember.MemberState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNCHANGED
public static final IMendixObjectMember.MemberState UNCHANGED
The object member has not changed since creation, retrieval or commit.
-
CHANGED
public static final IMendixObjectMember.MemberState CHANGED
The object member has changed since creation, retrieval or commit.
-
-
Method Detail
-
values
public static IMendixObjectMember.MemberState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IMendixObjectMember.MemberState c : IMendixObjectMember.MemberState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMendixObjectMember.MemberState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-