Package org.openhab.binding.homematic.internal.model.adapter

Examples of org.openhab.binding.homematic.internal.model.adapter.ValueListAdapter


    FieldUtils.writeField(var, "name", "Var", true);

    FieldUtils.writeField(var, "valueType", 16, true);
    FieldUtils.writeField(var, "subType", 29, true);

    Object convertedValueList = new ValueListAdapter().unmarshal(valueList == null ? null : valueList.toString());
    FieldUtils.writeField(var, "valueList", convertedValueList, true);

    var.setValue(value);

    return var;
View Full Code Here

TOP

Related Classes of org.openhab.binding.homematic.internal.model.adapter.ValueListAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.