me.xdrop.jrand.generators.location.DepthGeneratorGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrand Show documentation
Show all versions of jrand Show documentation
Java random data generation library
The newest version!
package me.xdrop.jrand.generators.location;
import javax.annotation.Generated;
import me.xdrop.jrand.generators.basics.DecimalGenerator;
public final class DepthGeneratorGen extends DepthGenerator {
@Generated("me.xdrop.jrand.annotation.processing.ForkClassGenerator")
public DepthGeneratorGen() {
}
@Generated("me.xdrop.jrand.annotation.processing.ForkClassGenerator")
private DepthGeneratorGen(DecimalGenerator decimal, int noDecimals) {
this.decimal = decimal;
this.noDecimals = noDecimals;
}
@Generated("me.xdrop.jrand.annotation.processing.ForkClassGenerator")
public final DepthGenerator fork() {
return new DepthGeneratorGen(
((me.xdrop.jrand.generators.basics.DecimalGeneratorGen)decimal).fork(),
noDecimals);
}
}