org.bidib.wizard.dmx.client.model.SpecialDataIndex Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-dmx-client Show documentation
Show all versions of bidibwizard-dmx-client Show documentation
jBiDiB BiDiB Wizard DMX client POM
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;
}
}