classpublicPriority 3
DelimiterInt
com.hypixel.hytale.builtin.hytalegenerator.delimiters.DelimiterInt
2
Methods
2
Public Methods
2
Fields
1
Constructors
Constructors
public
DelimiterInt(RangeInt range, V value)Methods
Public Methods (2)
public
RangeInt getRange()@Nonnull
public
V getValue()@Nullable
Fields
Private/Package Fields (2)
private
RangeInt rangeprivate
V valueSource Code
package com.hypixel.hytale.builtin.hytalegenerator.delimiters;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class DelimiterInt<V> {
@Nonnull
private final RangeInt range;
@Nullable
private final V value;
public DelimiterInt(@Nonnull RangeInt range, @Nullable V value) {
this.range = range;
this.value = value;
}
@Nonnull
public RangeInt getRange() {
return this.range;
}
@Nullable
public V getValue() {
return this.value;
}
}