Enum ThreatIntelIndicatorType
- java.lang.Object
-
- java.lang.Enum<ThreatIntelIndicatorType>
-
- software.amazon.awssdk.services.securityhub.model.ThreatIntelIndicatorType
-
- All Implemented Interfaces:
Serializable,Comparable<ThreatIntelIndicatorType>
@Generated("software.amazon.awssdk:codegen") public enum ThreatIntelIndicatorType extends Enum<ThreatIntelIndicatorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOMAINEMAIL_ADDRESSHASH_MD5HASH_SHA1HASH_SHA256HASH_SHA512IPV4_ADDRESSIPV6_ADDRESSMUTEXPROCESSUNKNOWN_TO_SDK_VERSIONURL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ThreatIntelIndicatorTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ThreatIntelIndicatorType>knownValues()StringtoString()static ThreatIntelIndicatorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ThreatIntelIndicatorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOMAIN
public static final ThreatIntelIndicatorType DOMAIN
-
EMAIL_ADDRESS
public static final ThreatIntelIndicatorType EMAIL_ADDRESS
-
HASH_MD5
public static final ThreatIntelIndicatorType HASH_MD5
-
HASH_SHA1
public static final ThreatIntelIndicatorType HASH_SHA1
-
HASH_SHA256
public static final ThreatIntelIndicatorType HASH_SHA256
-
HASH_SHA512
public static final ThreatIntelIndicatorType HASH_SHA512
-
IPV4_ADDRESS
public static final ThreatIntelIndicatorType IPV4_ADDRESS
-
IPV6_ADDRESS
public static final ThreatIntelIndicatorType IPV6_ADDRESS
-
MUTEX
public static final ThreatIntelIndicatorType MUTEX
-
PROCESS
public static final ThreatIntelIndicatorType PROCESS
-
URL
public static final ThreatIntelIndicatorType URL
-
UNKNOWN_TO_SDK_VERSION
public static final ThreatIntelIndicatorType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ThreatIntelIndicatorType[] 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 (ThreatIntelIndicatorType c : ThreatIntelIndicatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThreatIntelIndicatorType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<ThreatIntelIndicatorType>
-
fromValue
public static ThreatIntelIndicatorType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ThreatIntelIndicatorType corresponding to the value
-
knownValues
public static Set<ThreatIntelIndicatorType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownThreatIntelIndicatorTypes
-
-