Enum IdemixRoles
- java.lang.Object
-
- java.lang.Enum<IdemixRoles>
-
- org.hyperledger.fabric.sdk.identity.IdemixRoles
-
public enum IdemixRoles extends java.lang.Enum<IdemixRoles>
IdemixRoles is ENUM type that represent a Idemix Role and provide some functionality to operate with Bitmasks and to operate between MSPRoles and IdemixRoles.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IdemixRoles
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdemixRoles[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMBER
public static final IdemixRoles MEMBER
-
ADMIN
public static final IdemixRoles ADMIN
-
CLIENT
public static final IdemixRoles CLIENT
-
PEER
public static final IdemixRoles PEER
-
-
Method Detail
-
values
public static IdemixRoles[] 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 (IdemixRoles c : IdemixRoles.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdemixRoles 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
-
-