Package com.saperion.ws.wrapper
Enum SaWsGroupKind
- java.lang.Object
- 
- java.lang.Enum<SaWsGroupKind>
- 
- com.saperion.ws.wrapper.SaWsGroupKind
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<SaWsGroupKind>
 
 public enum SaWsGroupKind extends java.lang.Enum<SaWsGroupKind> The Enum SaWsGroupKind.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SaWsGroupKindfromBackend(com.saperion.intf.SaUserInfo.GroupKind type)From backend.static SaWsGroupKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SaWsGroupKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
GROUPpublic static final SaWsGroupKind GROUP The GROUP.
 - 
ORGUNITpublic static final SaWsGroupKind ORGUNIT The ORGUNIT.
 - 
ROLECLASSpublic static final SaWsGroupKind ROLECLASS The ROLECLASS.
 - 
ROLEpublic static final SaWsGroupKind ROLE The ROLE.
 - 
USERpublic static final SaWsGroupKind USER The USER.
 - 
UNDEFINEDpublic static final SaWsGroupKind UNDEFINED The UNDEFINED.
 - 
DISTRIBUTIONLISTpublic static final SaWsGroupKind DISTRIBUTIONLIST The DISTRIBUTIONLIST.
 
- 
 - 
Method Detail- 
valuespublic static SaWsGroupKind[] 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 (SaWsGroupKind c : SaWsGroupKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SaWsGroupKind 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
fromBackendpublic static SaWsGroupKind fromBackend(com.saperion.intf.SaUserInfo.GroupKind type) From backend.- Parameters:
- type- the type
- Returns:
- the sa ws group kind
 
 
- 
 
-