api.MeasurementKind
*/
class MeasurementKind
{
/**
* Unknown (in which case it is not tracked).
*
* Generated from protobuf enum UNKNOWN = 0;
*/
const UNKNOWN = 0;
/**
* Incrementing counters that never decrease (these are not reset on each
* reading).
*
* Generated from protobuf enum COUNTER = 1;
*/
const COUNTER = 1;
/**
* Counters that do get reset upon reading.
*
* Generated from protobuf enum ABSOLUTE = 2;
*/
const ABSOLUTE = 2;
/**
* E.g. a temperature value.
*
* Generated from protobuf enum GAUGE = 3;
*/
const GAUGE = 3;
/**
* E.g. a firmware version, true / false value.
*
* Generated from protobuf enum STRING = 4;
*/
const STRING = 4;
private static $valueToName = [
self::UNKNOWN => 'UNKNOWN',
self::COUNTER => 'COUNTER',
self::ABSOLUTE => 'ABSOLUTE',
self::GAUGE => 'GAUGE',
self::STRING => 'STRING',
];
public static function name($value)
{
if (!isset(self::$valueToName[$value])) {
throw new UnexpectedValueException(sprintf(
'Enum %s has no name defined for value %s', __CLASS__, $value));
}
return self::$valueToName[$value];
}
public static function value($name)
{
$const = __CLASS__ . '::' . strtoupper($name);
if (!defined($const)) {
throw new UnexpectedValueException(sprintf(
'Enum %s has no value defined for name %s', __CLASS__, $name));
}
return constant($const);
}
}