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);
}
}