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

org.graylog.plugins.views.search.searchtypes.pivot.buckets.DateInterval Maven / Gradle / Ivy

/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog.plugins.views.search.searchtypes.pivot.buckets;

public class DateInterval {
    private final Number quantity;
    private final String unit;

    public DateInterval(Number quantity, String unit) {
        this.quantity = quantity;
        this.unit = unit;
    }

    public static DateInterval seconds(int sec) {
        return new DateInterval(sec, "s");
    }

    public static DateInterval minutes(int min) {
        return new DateInterval(min, "m");
    }

    public static DateInterval hours(int hours) {
        return new DateInterval(hours, "h");
    }

    public static DateInterval days(int days) {
        return new DateInterval(days, "d");
    }

    public static DateInterval weeks(int weeks) {
        return new DateInterval(weeks, "w");
    }

    public static DateInterval months(int months) {
        return new DateInterval(months, "M");
    }

    public Number getQuantity() {
        return quantity;
    }

    public String getUnit() {
        return unit;
    }

    @Override
    public String toString() {
        return quantity + unit;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy