BatchLoggingLevel Class

public final class BatchLoggingLevel
extends ExpandableStringEnum<BatchLoggingLevel>

Log verbosity for batch inferencing. Increasing verbosity order for logging is : Warning, Info and Debug. The default value is Info.

Field Summary

Modifier and Type Field and Description
static final BatchLoggingLevel DEBUG

Static value Debug for BatchLoggingLevel.

static final BatchLoggingLevel INFO

Static value Info for BatchLoggingLevel.

static final BatchLoggingLevel WARNING

Static value Warning for BatchLoggingLevel.

Constructor Summary

Constructor Description
BatchLoggingLevel()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BatchLoggingLevel value.

Method Summary

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

Creates or finds a BatchLoggingLevel from its string representation.

static Collection<BatchLoggingLevel> values()

Gets known BatchLoggingLevel values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DEBUG

public static final BatchLoggingLevel DEBUG

Static value Debug for BatchLoggingLevel.

INFO

public static final BatchLoggingLevel INFO

Static value Info for BatchLoggingLevel.

WARNING

public static final BatchLoggingLevel WARNING

Static value Warning for BatchLoggingLevel.

Constructor Details

BatchLoggingLevel

@Deprecated
public BatchLoggingLevel()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of BatchLoggingLevel value.

Method Details

fromString

public static BatchLoggingLevel fromString(String name)

Creates or finds a BatchLoggingLevel from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding BatchLoggingLevel.

values

public static Collection<BatchLoggingLevel> values()

Gets known BatchLoggingLevel values.

Returns:

known BatchLoggingLevel values.

Applies to