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

net.moznion.random.string.DigitLetter Maven / Gradle / Ivy

package net.moznion.random.string;

enum DigitLetter implements Letter {
  ZERO("0"), ONE("1"), TWO("2"), THREE("3"), FOUR("4"),
  FIVE("5"), SIX("6"), SEVEN("7"), EIGHT("8"), NINE("9");

  private final String letter;

  private DigitLetter(String letter) {
    this.letter = letter;
  }

  @Override
  public String getLetter() {
    return letter;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy