ExportPlatform Class

  • java.lang.Object
    • com.microsoft.rest.ExpandableStringEnum<ExportPlatform>
      • com.microsoft.azure.cognitiveservices.vision.customvision.training.models.ExportPlatform

public class ExportPlatform

Defines values for ExportPlatform.

Field Summary

Modifier and Type Field and Description
final ExportPlatform CORE_ML

Static value CoreML for ExportPlatform.

final ExportPlatform DOCKER_FILE

Static value DockerFile for ExportPlatform.

final ExportPlatform ONNX

Static value ONNX for ExportPlatform.

final ExportPlatform TENSOR_FLOW

Static value TensorFlow for ExportPlatform.

final ExportPlatform VAIDK

Static value VAIDK for ExportPlatform.

Method Summary

Modifier and Type Method and Description
ExportPlatform fromString(String name)

Creates or finds a ExportPlatform from its string representation.

Collection<ExportPlatform> values()

Field Details

CORE_ML

public static final ExportPlatform CORE_ML= fromString("CoreML")

Static value CoreML for ExportPlatform.

DOCKER_FILE

public static final ExportPlatform DOCKER_FILE= fromString("DockerFile")

Static value DockerFile for ExportPlatform.

ONNX

public static final ExportPlatform ONNX= fromString("ONNX")

Static value ONNX for ExportPlatform.

TENSOR_FLOW

public static final ExportPlatform TENSOR_FLOW= fromString("TensorFlow")

Static value TensorFlow for ExportPlatform.

VAIDK

public static final ExportPlatform VAIDK= fromString("VAIDK")

Static value VAIDK for ExportPlatform.

Method Details

fromString

public static ExportPlatform fromString(String name)

Creates or finds a ExportPlatform from its string representation.

Parameters:

name - a name to look for

Returns:

the corresponding ExportPlatform

values

public static Collection values()

Returns:

known ExportPlatform values

Applies to