Enum ExportFormat.Name
- java.lang.Object
-
- java.lang.Enum<ExportFormat.Name>
-
- com.oracle.bmc.datalabelingservice.model.ExportFormat.Name
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ExportFormat.Name>
- Enclosing class:
- ExportFormat
public static enum ExportFormat.Name extends Enum<ExportFormat.Name> implements BmcEnum
Name of export format.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Coco
Conll
Jsonl
JsonlCompactPlusContent
JsonlConsolidated
PascalVoc
Spacy
Yolo
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExportFormat.Name
create(String key)
String
getValue()
static ExportFormat.Name
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExportFormat.Name[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Jsonl
public static final ExportFormat.Name Jsonl
-
JsonlConsolidated
public static final ExportFormat.Name JsonlConsolidated
-
Conll
public static final ExportFormat.Name Conll
-
Spacy
public static final ExportFormat.Name Spacy
-
Coco
public static final ExportFormat.Name Coco
-
Yolo
public static final ExportFormat.Name Yolo
-
PascalVoc
public static final ExportFormat.Name PascalVoc
-
JsonlCompactPlusContent
public static final ExportFormat.Name JsonlCompactPlusContent
-
-
Method Detail
-
values
public static ExportFormat.Name[] 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 (ExportFormat.Name c : ExportFormat.Name.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportFormat.Name 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
-
create
public static ExportFormat.Name create(String key)
-
-