public enum ThreatType extends java.lang.Enum<ThreatType> implements org.eclipse.emf.common.util.Enumerator
Enum Constant and Description |
---|
UNAUTHORIZED_ACCESS_OF_SERVICE
The 'Unauthorized Access Of Service' literal object.
|
UNAUTHORIZED_DENIAL_OF_SERVICE
The 'Unauthorized Denial Of Service' literal object.
|
UNAUTHORIZED_MODIFICATION_OF_SERVICE
The 'Unauthorized Modification Of Service' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
UNAUTHORIZED_ACCESS_OF_SERVICE_VALUE
The 'Unauthorized Access Of Service' literal value.
|
static int |
UNAUTHORIZED_DENIAL_OF_SERVICE_VALUE
The 'Unauthorized Denial Of Service' literal value.
|
static int |
UNAUTHORIZED_MODIFICATION_OF_SERVICE_VALUE
The 'Unauthorized Modification Of Service' literal value.
|
static java.util.List<ThreatType> |
VALUES
A public read-only list of all the 'Threat Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static ThreatType |
get(int value)
Returns the 'Threat Type' literal with the specified integer value.
|
static ThreatType |
get(java.lang.String literal)
Returns the 'Threat Type' literal with the specified literal value.
|
static ThreatType |
getByName(java.lang.String name)
Returns the 'Threat Type' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static ThreatType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThreatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThreatType UNAUTHORIZED_ACCESS_OF_SERVICE
UNAUTHORIZED_ACCESS_OF_SERVICE_VALUE
public static final ThreatType UNAUTHORIZED_MODIFICATION_OF_SERVICE
public static final ThreatType UNAUTHORIZED_DENIAL_OF_SERVICE
UNAUTHORIZED_DENIAL_OF_SERVICE_VALUE
public static final int UNAUTHORIZED_ACCESS_OF_SERVICE_VALUE
If the meaning of 'Unauthorized Access Of Service' literal object isn't clear, there really should be more of a description here...
public static final int UNAUTHORIZED_MODIFICATION_OF_SERVICE_VALUE
If the meaning of 'Unauthorized Modification Of Service' literal object isn't clear, there really should be more of a description here...
public static final int UNAUTHORIZED_DENIAL_OF_SERVICE_VALUE
If the meaning of 'Unauthorized Denial Of Service' literal object isn't clear, there really should be more of a description here...
public static final java.util.List<ThreatType> VALUES
public static ThreatType[] values()
for (ThreatType c : ThreatType.values()) System.out.println(c);
public static ThreatType 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 static ThreatType get(java.lang.String literal)
literal
- the literal.null
.public static ThreatType getByName(java.lang.String name)
name
- the name.null
.public static ThreatType get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<ThreatType>