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

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

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

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