public static enum StripProvenance.ProvenanceTypes extends Enum<StripProvenance.ProvenanceTypes>
Enum Constant and Description |
---|
ALL
Selects all provenance stored in the model.
|
DATASET
Select the dataset provenance.
|
INSTANCE
Select any instance provenance from the specific training run that created this model.
|
SYSTEM
Selects any system information provenance.
|
TRAINER
Select the trainer provenance.
|
Modifier and Type | Method and Description |
---|---|
static StripProvenance.ProvenanceTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StripProvenance.ProvenanceTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StripProvenance.ProvenanceTypes DATASET
public static final StripProvenance.ProvenanceTypes TRAINER
public static final StripProvenance.ProvenanceTypes INSTANCE
public static final StripProvenance.ProvenanceTypes SYSTEM
public static final StripProvenance.ProvenanceTypes ALL
public static StripProvenance.ProvenanceTypes[] values()
for (StripProvenance.ProvenanceTypes c : StripProvenance.ProvenanceTypes.values()) System.out.println(c);
public static StripProvenance.ProvenanceTypes 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 nullCopyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.