All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.dmx.client.model.SpecialDataIndex Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
package org.bidib.wizard.dmx.client.model;

import java.time.LocalTime;

public class SpecialDataIndex implements DmxDataIndex {

    private final int positionIndex;

    private final String key;

    public SpecialDataIndex(int positionIndex, String key) {
        this.positionIndex = positionIndex;
        this.key = key;
    }

    @Override
    public int getPositionIndex() {
        return positionIndex;
    }

    @Override
    public LocalTime getTime() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public int getTimeValue() {
        // TODO Auto-generated method stub
        return -1;
    }

    public String getKey() {
        return key;
    }

    @Override
    public String toString() {
        return key;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy