// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.builtin.hytalegenerator.delimiters;

import javax.annotation.Nullable;
import javax.annotation.Nonnull;

public class DelimiterInt<V>
{
    @Nonnull
    private final RangeInt range;
    @Nullable
    private final V value;
    
    public DelimiterInt(@Nonnull final RangeInt range, @Nullable final V value) {
        this.range = range;
        this.value = value;
    }
    
    @Nonnull
    public RangeInt getRange() {
        return this.range;
    }
    
    @Nullable
    public V getValue() {
        return this.value;
    }
}
