Enum Privileges
- java.lang.Object
-
- java.lang.Enum<Privileges>
-
- org.palladiosimulator.pcm.confidentiality.attackerSpecification.attackSpecification.Privileges
-
- All Implemented Interfaces:
Serializable,Comparable<Privileges>,Enumerator
public enum Privileges extends Enum<Privileges> implements Enumerator
A representation of the literals of the enumeration 'Privileges', and utility methods for working with them.- See Also:
AttackSpecificationPackage.getPrivileges()- Generated class or method.
- EMF model class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static intLOW_VALUEThe 'Low' literal value.static intNONE_VALUEThe 'None' literal value.static intSPECIAL_VALUEThe 'Special' literal value.static List<Privileges>VALUESA public read-only list of all the 'Privileges' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Privilegesget(int value)Returns the 'Privileges' literal with the specified integer value.static Privilegesget(String literal)Returns the 'Privileges' literal with the specified literal value.static PrivilegesgetByName(String name)Returns the 'Privileges' literal with the specified name.StringgetLiteral()StringgetName()intgetValue()StringtoString()Returns the literal value of the enumerator, which is its string representation.static PrivilegesvalueOf(String name)Returns the enum constant of this type with the specified name.static Privileges[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Privileges NONE
The 'None' literal object.- See Also:
NONE_VALUE- Generated class or method.
- Ordered collection.
-
LOW
public static final Privileges LOW
The 'Low' literal object.- See Also:
LOW_VALUE- Generated class or method.
- Ordered collection.
-
SPECIAL
public static final Privileges SPECIAL
The 'Special' literal object.- See Also:
SPECIAL_VALUE- Generated class or method.
- Ordered collection.
-
-
Field Detail
-
NONE_VALUE
public static final int NONE_VALUE
The 'None' literal value.- See Also:
NONE, Constant Field Values- Generated class or method.
- EMF model class or method.
- name="None"
- Ordered collection.
-
LOW_VALUE
public static final int LOW_VALUE
The 'Low' literal value.- See Also:
LOW, Constant Field Values- Generated class or method.
- EMF model class or method.
- name="Low"
- Ordered collection.
-
SPECIAL_VALUE
public static final int SPECIAL_VALUE
The 'Special' literal value.- See Also:
SPECIAL, Constant Field Values- Generated class or method.
- EMF model class or method.
- name="Special"
- Ordered collection.
-
VALUES
public static final List<Privileges> VALUES
A public read-only list of all the 'Privileges' enumerators.- Generated class or method.
-
-
Method Detail
-
values
public static Privileges[] 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 (Privileges c : Privileges.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Privileges valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
get
public static Privileges get(String literal)
Returns the 'Privileges' literal with the specified literal value.- Parameters:
literal- the literal.- Returns:
- the matching enumerator or
null. - Generated class or method.
-
getByName
public static Privileges getByName(String name)
Returns the 'Privileges' literal with the specified name.- Parameters:
name- the name.- Returns:
- the matching enumerator or
null. - Generated class or method.
-
get
public static Privileges get(int value)
Returns the 'Privileges' literal with the specified integer value.- Parameters:
value- the integer value.- Returns:
- the matching enumerator or
null. - Generated class or method.
-
getValue
public int getValue()
- Specified by:
getValuein interfaceEnumerator- Generated class or method.
-
getName
public String getName()
- Specified by:
getNamein interfaceEnumerator- Generated class or method.
-
getLiteral
public String getLiteral()
- Specified by:
getLiteralin interfaceEnumerator- Generated class or method.
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toStringin classEnum<Privileges>- Generated class or method.
-
-