blob: cad6036f82a426042a6af7691b13fb00fdc8a66f [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
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());
}
}