public static enum Member.ManagementRole extends java.lang.Enum<Member.ManagementRole>
Enum Constant and Description |
---|
MANAGER
Manager role
|
MEMBER
Member role
|
NO_ROLE
No role
|
REMOTE
Remote client
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Member.ManagementRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Member.ManagementRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Member.ManagementRole NO_ROLE
public static final Member.ManagementRole MEMBER
public static final Member.ManagementRole MANAGER
public static final Member.ManagementRole REMOTE
public static Member.ManagementRole[] values()
for (Member.ManagementRole c : Member.ManagementRole.values()) System.out.println(c);
public static Member.ManagementRole valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
Copyright (c) 2014 Cloud Software Group, Inc. All rights reserved.