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

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

The newest version!
package io.contek.zeus;

import javax.annotation.concurrent.Immutable;

@Immutable
public final class ExchangeId extends StringKey {

  public ExchangeId(String stringValue) {
    super(stringValue);
  }

  public static ExchangeId of(String stringValue) {
    return new ExchangeId(stringValue);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy