blob: c8d094c3e0ef11eb136ccf9075dbd41a062be4ad [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 TasteStrength extends EnumDataPoint<TasteStrength.Values> {
static public enum Values {
zero, sensitive, medium, strong, maximum
}
public TasteStrength() {
this(DatapointType.strength);
}
public TasteStrength(DatapointType dp) {
super(dp, HomeDataType.TasteStrength);
setValidValues(Values.values());
}
}