Record RandomStringGenerator

java.lang.Object
java.lang.Record
io.memoria.jutils.adapter.generator.RandomStringGenerator
All Implemented Interfaces:
StringGenerator

public record RandomStringGenerator(java.util.Random random)
extends java.lang.Record
implements StringGenerator
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.lang.String ALPHANUMERIC  
  • Constructor Summary

    Constructors 
    Constructor Description
    RandomStringGenerator​(java.util.Random random)
    Creates an instance of a RandomStringGenerator record.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String alphanumeric​(int length)  
    boolean equals​(java.lang.Object o)
    Indicates whether some other object is "equal to" this one.
    int hashCode()
    Returns a hash code value for this object.
    java.lang.String hex​(int length)  
    java.lang.String minMaxAlphanumeric​(int min, int max)  
    java.lang.String minMaxHex​(int min, int max)  
    java.util.Random random()
    Returns the value of the random record component.
    java.lang.String toString()
    Returns a string representation of this record.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

  • Constructor Details

    • RandomStringGenerator

      public RandomStringGenerator​(java.util.Random random)
      Creates an instance of a RandomStringGenerator record.
      Parameters:
      random - the value for the random record component
  • Method Details

    • alphanumeric

      public java.lang.String alphanumeric​(int length)
      Specified by:
      alphanumeric in interface StringGenerator
    • hex

      public java.lang.String hex​(int length)
      Specified by:
      hex in interface StringGenerator
    • minMaxAlphanumeric

      public java.lang.String minMaxAlphanumeric​(int min, int max)
      Specified by:
      minMaxAlphanumeric in interface StringGenerator
    • minMaxHex

      public java.lang.String minMaxHex​(int min, int max)
      Specified by:
      minMaxHex in interface StringGenerator
    • toString

      public java.lang.String toString()
      Returns a string representation of this record. The representation contains the name of the type, followed by the name and value of each of the record components.
      Specified by:
      toString in class java.lang.Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class java.lang.Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals​(java.lang.Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class java.lang.Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • random

      public java.util.Random random()
      Returns the value of the random record component.
      Returns:
      the value of the random record component