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

io.contek.zeus.TradeLabel Maven / Gradle / Ivy

The newest version!
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy