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

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

There is a newer version: 2.29.0
Show 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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy