Enum CVSSv3.Scope
- java.lang.Object
-
- java.lang.Enum<CVSSv3.Scope>
-
- com.google.cloud.osconfig.v1alpha.CVSSv3.Scope
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<CVSSv3.Scope>
- Enclosing class:
- CVSSv3
public static enum CVSSv3.Scope extends Enum<CVSSv3.Scope> implements com.google.protobuf.ProtocolMessageEnum
The Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope.
Protobuf enumgoogle.cloud.osconfig.v1alpha.CVSSv3.Scope
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SCOPE_CHANGEDAn exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component.SCOPE_UNCHANGEDAn exploited vulnerability can only affect resources managed by the same security authority.SCOPE_UNSPECIFIEDInvalid value.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intSCOPE_CHANGED_VALUEAn exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component.static intSCOPE_UNCHANGED_VALUEAn exploited vulnerability can only affect resources managed by the same security authority.static intSCOPE_UNSPECIFIED_VALUEInvalid value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static CVSSv3.ScopeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<CVSSv3.Scope>internalGetValueMap()static CVSSv3.ScopevalueOf(int value)Deprecated.static CVSSv3.ScopevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static CVSSv3.ScopevalueOf(String name)Returns the enum constant of this type with the specified name.static CVSSv3.Scope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCOPE_UNSPECIFIED
public static final CVSSv3.Scope SCOPE_UNSPECIFIED
Invalid value.
SCOPE_UNSPECIFIED = 0;
-
SCOPE_UNCHANGED
public static final CVSSv3.Scope SCOPE_UNCHANGED
An exploited vulnerability can only affect resources managed by the same security authority.
SCOPE_UNCHANGED = 1;
-
SCOPE_CHANGED
public static final CVSSv3.Scope SCOPE_CHANGED
An exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component.
SCOPE_CHANGED = 2;
-
UNRECOGNIZED
public static final CVSSv3.Scope UNRECOGNIZED
-
-
Field Detail
-
SCOPE_UNSPECIFIED_VALUE
public static final int SCOPE_UNSPECIFIED_VALUE
Invalid value.
SCOPE_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
SCOPE_UNCHANGED_VALUE
public static final int SCOPE_UNCHANGED_VALUE
An exploited vulnerability can only affect resources managed by the same security authority.
SCOPE_UNCHANGED = 1;- See Also:
- Constant Field Values
-
SCOPE_CHANGED_VALUE
public static final int SCOPE_CHANGED_VALUE
An exploited vulnerability can affect resources beyond the security scope managed by the security authority of the vulnerable component.
SCOPE_CHANGED = 2;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static CVSSv3.Scope[] 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 (CVSSv3.Scope c : CVSSv3.Scope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CVSSv3.Scope 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static CVSSv3.Scope valueOf(int value)
Deprecated.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:
value- 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
-
forNumber
public static CVSSv3.Scope forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<CVSSv3.Scope> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static CVSSv3.Scope valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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
-
-