UnitType Class

public final class UnitType
extends ExpandableStringEnum<UnitType>

The unit of the metric.

Field Summary

Modifier and Type Field and Description
static final UnitType BYTES

Static value Bytes for UnitType.

static final UnitType BYTES_PER_SECOND

Static value BytesPerSecond for UnitType.

static final UnitType COUNT

Static value Count for UnitType.

static final UnitType COUNT_PER_SECOND

Static value CountPerSecond for UnitType.

static final UnitType MILLISECONDS

Static value Milliseconds for UnitType.

static final UnitType PERCENT

Static value Percent for UnitType.

static final UnitType SECONDS

Static value Seconds for UnitType.

Constructor Summary

Constructor Description
UnitType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of UnitType value.

Method Summary

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

Creates or finds a UnitType from its string representation.

static Collection<UnitType> values()

Gets known UnitType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BYTES

public static final UnitType BYTES

Static value Bytes for UnitType.

BYTES_PER_SECOND

public static final UnitType BYTES_PER_SECOND

Static value BytesPerSecond for UnitType.

COUNT

public static final UnitType COUNT

Static value Count for UnitType.

COUNT_PER_SECOND

public static final UnitType COUNT_PER_SECOND

Static value CountPerSecond for UnitType.

MILLISECONDS

public static final UnitType MILLISECONDS

Static value Milliseconds for UnitType.

PERCENT

public static final UnitType PERCENT

Static value Percent for UnitType.

SECONDS

public static final UnitType SECONDS

Static value Seconds for UnitType.

Constructor Details

UnitType

@Deprecated
public UnitType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of UnitType value.

Method Details

fromString

public static UnitType fromString(String name)

Creates or finds a UnitType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding UnitType.

values

public static Collection values()

Gets known UnitType values.

Returns:

known UnitType values.

Applies to