blob: 0f85b99ffed1fd562ff0d067df22a12850b0e24d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt.home.types;
import org.eclipse.om2m.sdt.datapoints.EnumDataPoint;
public abstract class UvStatus extends EnumDataPoint<UvStatus.Values> {
static public enum Values {
good, normal, bad, veryBad, danger
}
public UvStatus() {
this(DatapointType.uvStatus);
}
public UvStatus(DatapointType dt) {
super(dt, HomeDataType.UvStatus);
setValidValues(Values.values());
}
}