io.contek.zeus.TradeLabel Maven / Gradle / Ivy
package io.contek.zeus;
import javax.annotation.concurrent.Immutable;
@Immutable
public final class TradeLabel extends StringKey {
public TradeLabel(String stringValue) {
super(stringValue);
}
public static TradeLabel of(int longValue) {
return of(Integer.toString(longValue));
}
public static TradeLabel of(long longValue) {
return of(Long.toString(longValue));
}
public static TradeLabel of(String stringValue) {
return new TradeLabel(stringValue);
}
}