org.bidib.wizard.dmx.client.model.DmxDataIndex 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 interface DmxDataIndex {
/**
* @return the position index
*/
int getPositionIndex();
/**
* @return the time value (hours + minutes)
*/
int getTimeValue();
/**
* @return the time
*/
LocalTime getTime();
}