io.contek.zeus.AccountName Maven / Gradle / Ivy
The newest version!
package io.contek.zeus;
import javax.annotation.concurrent.Immutable;
@Immutable
public final class AccountName extends StringKey {
private AccountName(String stringValue) {
super(stringValue);
}
public static AccountName of(String stringValue) {
return new AccountName(stringValue);
}
}