blob: 37f955f30aa62c68052aaa5ddfd962e72fc82ddf [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 Tone extends EnumDataPoint<Tone.Values> {
static public enum Values {
fire, theft, emergency, doorbell, deviceFail
}
public Tone() {
this(DatapointType.tone);
}
public Tone(DatapointType dt) {
super(dt, HomeDataType.Tone);
setValidValues(Values.values());
}
}