AggregationRuleEntry.java 607 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.cq.mobile.index.impl.builder;

public class AggregationRuleEntry {
    private final String name;
    private final Object value;
    private final boolean isRelative;

    public AggregationRuleEntry(String name, Object value, boolean isRelative) {
        this.name = name;
        this.value = value;
        this.isRelative = isRelative;
    }

    public String getName() {
        return this.name;
    }

    public Object getValue() {
        return this.value;
    }

    public boolean isRelative() {
        return this.isRelative;
    }
}