Package com.hellosign.openapi.model
Enum TeamRemoveMemberRequest.NewRoleEnum
- java.lang.Object
-
- java.lang.Enum<TeamRemoveMemberRequest.NewRoleEnum>
-
- com.hellosign.openapi.model.TeamRemoveMemberRequest.NewRoleEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TeamRemoveMemberRequest.NewRoleEnum>
- Enclosing class:
- TeamRemoveMemberRequest
public static enum TeamRemoveMemberRequest.NewRoleEnum extends java.lang.Enum<TeamRemoveMemberRequest.NewRoleEnum>
A new role member will take in a new Team. **Note**: This parameter is used only if `new_team_id` is provided.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMIN
DEVELOPER
MEMBER
TEAM_MANAGER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TeamRemoveMemberRequest.NewRoleEnum
fromValue(java.lang.String value)
java.lang.String
getValue()
java.lang.String
toString()
static TeamRemoveMemberRequest.NewRoleEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TeamRemoveMemberRequest.NewRoleEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMBER
public static final TeamRemoveMemberRequest.NewRoleEnum MEMBER
-
DEVELOPER
public static final TeamRemoveMemberRequest.NewRoleEnum DEVELOPER
-
TEAM_MANAGER
public static final TeamRemoveMemberRequest.NewRoleEnum TEAM_MANAGER
-
ADMIN
public static final TeamRemoveMemberRequest.NewRoleEnum ADMIN
-
-
Method Detail
-
values
public static TeamRemoveMemberRequest.NewRoleEnum[] 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 (TeamRemoveMemberRequest.NewRoleEnum c : TeamRemoveMemberRequest.NewRoleEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TeamRemoveMemberRequest.NewRoleEnum 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
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<TeamRemoveMemberRequest.NewRoleEnum>
-
fromValue
public static TeamRemoveMemberRequest.NewRoleEnum fromValue(java.lang.String value)
-
-