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

net.sourceforge.plantuml.timingdiagram.TimeTick Maven / Gradle / Ivy

There is a newer version: 1.2025.0
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.timingdiagram;

import java.math.BigDecimal;

public class TimeTick implements Comparable {

	private final BigDecimal time;
	private final TimingFormat format;

	public TimeTick(BigDecimal time, TimingFormat format) {
		this.time = time;
		this.format = format;
	}

	public final BigDecimal getTime() {
		return time;
	}

	public int compareTo(TimeTick other) {
		return this.time.compareTo(other.time);
	}

	public final TimingFormat getFormat() {
		return format;
	}

	@Override
	public String toString() {
		return format.formatTime(time);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy