JobInputType Class

public final class JobInputType
extends ExpandableStringEnum<JobInputType>

Enum to determine the Job Input Type.

Field Summary

Modifier and Type Field and Description
static final JobInputType CUSTOM_MODEL

Static value custom_model for JobInputType.

static final JobInputType LITERAL

Static value literal for JobInputType.

static final JobInputType MLFLOW_MODEL

Static value mlflow_model for JobInputType.

static final JobInputType MLTABLE

Static value mltable for JobInputType.

static final JobInputType TRITON_MODEL

Static value triton_model for JobInputType.

static final JobInputType URI_FILE

Static value uri_file for JobInputType.

static final JobInputType URI_FOLDER

Static value uri_folder for JobInputType.

Constructor Summary

Constructor Description
JobInputType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of JobInputType value.

Method Summary

Modifier and Type Method and Description
static JobInputType fromString(String name)

Creates or finds a JobInputType from its string representation.

static Collection<JobInputType> values()

Gets known JobInputType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

CUSTOM_MODEL

public static final JobInputType CUSTOM_MODEL

Static value custom_model for JobInputType.

LITERAL

public static final JobInputType LITERAL

Static value literal for JobInputType.

MLFLOW_MODEL

public static final JobInputType MLFLOW_MODEL

Static value mlflow_model for JobInputType.

MLTABLE

public static final JobInputType MLTABLE

Static value mltable for JobInputType.

TRITON_MODEL

public static final JobInputType TRITON_MODEL

Static value triton_model for JobInputType.

URI_FILE

public static final JobInputType URI_FILE

Static value uri_file for JobInputType.

URI_FOLDER

public static final JobInputType URI_FOLDER

Static value uri_folder for JobInputType.

Constructor Details

JobInputType

@Deprecated
public JobInputType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of JobInputType value.

Method Details

fromString

public static JobInputType fromString(String name)

Creates or finds a JobInputType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding JobInputType.

values

public static Collection<JobInputType> values()

Gets known JobInputType values.

Returns:

known JobInputType values.

Applies to