public enum Activity extends Enum<Activity>
Enum Constant and Description |
---|
DATA_COLLECTION |
DATA_PREPARATION |
DEPLOYMENT |
DESIGN |
FINE_TUNING |
INFERENCE |
OTHER |
TRAINING |
VALIDATION |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static Activity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Activity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Activity DESIGN
public static final Activity DATA_COLLECTION
public static final Activity DATA_PREPARATION
public static final Activity TRAINING
public static final Activity FINE_TUNING
public static final Activity VALIDATION
public static final Activity DEPLOYMENT
public static final Activity INFERENCE
public static final Activity OTHER
public static Activity[] values()
for (Activity c : Activity.values()) System.out.println(c);
public static Activity 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.