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 Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SaWsGroupKind
fromBackend(com.saperion.intf.SaUserInfo.GroupKind type)
From backend.static SaWsGroupKind
valueOf(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
-
GROUP
public static final SaWsGroupKind GROUP
The GROUP.
-
ORGUNIT
public static final SaWsGroupKind ORGUNIT
The ORGUNIT.
-
ROLECLASS
public static final SaWsGroupKind ROLECLASS
The ROLECLASS.
-
ROLE
public static final SaWsGroupKind ROLE
The ROLE.
-
USER
public static final SaWsGroupKind USER
The USER.
-
UNDEFINED
public static final SaWsGroupKind UNDEFINED
The UNDEFINED.
-
DISTRIBUTIONLIST
public static final SaWsGroupKind DISTRIBUTIONLIST
The DISTRIBUTIONLIST.
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 namejava.lang.NullPointerException
- if the argument is null
-
fromBackend
public static SaWsGroupKind fromBackend(com.saperion.intf.SaUserInfo.GroupKind type)
From backend.- Parameters:
type
- the type- Returns:
- the sa ws group kind
-
-