UnitType Class

  • java.lang.Object
    • com.microsoft.rest.ExpandableStringEnum<UnitType>
      • com.microsoft.azure.management.sql.UnitType

public class UnitType

Defines values for UnitType.

Field Summary

Modifier and Type Field and Description
final UnitType BYTES

Static value bytes for UnitType.

final UnitType BYTES_PER_SECOND

Static value bytesPerSecond for UnitType.

final UnitType COUNT

Static value count for UnitType.

final UnitType COUNT_PER_SECOND

Static value countPerSecond for UnitType.

final UnitType PERCENT

Static value percent for UnitType.

final UnitType SECONDS

Static value seconds for UnitType.

Method Summary

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

Creates or finds a UnitType from its string representation.

Collection<UnitType> values()

Field Details

BYTES

public static final UnitType BYTES= fromString("bytes")

Static value bytes for UnitType.

BYTES_PER_SECOND

public static final UnitType BYTES_PER_SECOND= fromString("bytesPerSecond")

Static value bytesPerSecond for UnitType.

COUNT

public static final UnitType COUNT= fromString("count")

Static value count for UnitType.

COUNT_PER_SECOND

public static final UnitType COUNT_PER_SECOND= fromString("countPerSecond")

Static value countPerSecond for UnitType.

PERCENT

public static final UnitType PERCENT= fromString("percent")

Static value percent for UnitType.

SECONDS

public static final UnitType SECONDS= fromString("seconds")

Static value seconds for UnitType.

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()

Returns:

known UnitType values

Applies to