public enum ExecutionEnvironment extends Enum<ExecutionEnvironment>
Enum Constant and Description |
---|
HARDWARE |
OTHER |
SOFTWARE_ENCRYPTED_RAM |
SOFTWARE_PLAIN_RAM |
SOFTWARE_TEE |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static ExecutionEnvironment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionEnvironment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionEnvironment SOFTWARE_PLAIN_RAM
public static final ExecutionEnvironment SOFTWARE_ENCRYPTED_RAM
public static final ExecutionEnvironment SOFTWARE_TEE
public static final ExecutionEnvironment HARDWARE
public static final ExecutionEnvironment OTHER
public static final ExecutionEnvironment UNKNOWN
public static ExecutionEnvironment[] values()
for (ExecutionEnvironment c : ExecutionEnvironment.values()) System.out.println(c);
public static ExecutionEnvironment valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getName()
Copyright © 2017–2025 OWASP Foundation. All rights reserved.