All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.aggregation.NumericRangeBucket Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.aggregation;

import com.enonic.xp.annotation.PublicApi;

@PublicApi
public class NumericRangeBucket
    extends Bucket
{
    private final Number from;

    private final Number to;

    private NumericRangeBucket( final Builder builder )
    {
        super( builder );
        from = builder.from;
        to = builder.to;
    }

    public Number getFrom()
    {
        return from;
    }

    public Number getTo()
    {
        return to;
    }

    public static Builder create()
    {
        return new Builder();
    }

    public static final class Builder
        extends Bucket.Builder
    {
        private Number from;

        private Number to;

        private Builder()
        {
        }

        public Builder from( final Number from )
        {
            this.from = from;
            return this;
        }

        public Builder to( final Number to )
        {
            this.to = to;
            return this;
        }

        @Override
        public NumericRangeBucket build()
        {
            return new NumericRangeBucket( this );
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy