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

com.hp.autonomy.aci.content.ranges.NumericRange Maven / Gradle / Ivy

Go to download

API for representing aspects of IDOL's Content server, including FieldText and document References

There is a newer version: 4.2.0
Show newest version
/*
 * Copyright 2017 Hewlett Packard Enterprise Development Company, L.P.
 * Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
 */

package com.hp.autonomy.aci.content.ranges;

import java.util.List;

@SuppressWarnings("WeakerAccess")
public class NumericRange extends ParametricFieldRange {
    private static final long serialVersionUID = -5755223676715240483L;

    public NumericRange(final String field, final List ranges) {
        super(field, ranges);
    }

    public NumericRange(final String field, final List ranges, final boolean noMax) {
        super(field, ranges, noMax);
    }

    public NumericRange(final String field, final List ranges, final boolean noMin, final boolean noMax) {
        super(field, ranges, noMin, noMax);
    }

    protected String getFieldTextName() {
        return "FIXED";
    }

    protected String formatElement(final Double range) {
        return range.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy