com.hp.autonomy.aci.content.fieldtext.EQUAL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of content-parameter-api Show documentation
Show all versions of content-parameter-api Show documentation
API for representing aspects of IDOL's Content server, including FieldText and document References
/*
* Copyright 2009-2015 Hewlett-Packard 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.fieldtext;
import com.hp.autonomy.aci.content.internal.InternalUtils;
import org.apache.commons.lang.Validate;
import java.util.Arrays;
import java.util.Collections;
/**
* Fieldtext specifier for the EQUAL operator
*/
public class EQUAL extends Specifier {
/**
* Constructs a new single field EQUAL fieldtext
* @param field The field name
* @param value The first value
* @param values Any additional values
* @param The numeric type
*/
public EQUAL(final String field, final T value, final T... values) {
this(field, InternalUtils.toList(value, values));
}
/**
* Constructs a new single field EQUAL fieldtext
* @param field The field name
* @param values The field values
* @param The numeric type
*/
public EQUAL(final String field, final T[] values) {
this(field, Arrays.asList(values));
}
/**
* Constructs a new single field EQUAL fieldtext
* @param field The field name
* @param values The field values
*/
public EQUAL(final String field, final double[] values) {
this(field, InternalUtils.doublesToIterable(values));
}
/**
* Constructs a new single field EQUAL fieldtext
* @param field The field name
* @param values The field values
*/
public EQUAL(final String field, final int[] values) {
this(field, InternalUtils.intsToIterable(values));
}
/**
* Constructs a new single field EQUAL fieldtext
* @param field The field name
* @param values The field values
*/
public EQUAL(final String field, final long[] values) {
this(field, InternalUtils.longsToIterable(values));
}
/**
* Constructs a new single field EQUAL fieldtext
* @param field The field name
* @param values The field values
*/
public EQUAL(final String field, final Iterable extends Number> values) {
this(Collections.singletonList(field), values);
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field names
* @param value The first value
* @param values Any additional values
* @param The numeric type
*/
public EQUAL(final String[] fields, final T value, final T... values) {
this(fields, InternalUtils.toList(value, values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
* @param The numeric type
*/
public EQUAL(final String[] fields, final T[] values) {
this(fields, Arrays.asList(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final String[] fields, final double[] values) {
this(fields, InternalUtils.doublesToIterable(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final String[] fields, final int[] values) {
this(fields, InternalUtils.intsToIterable(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final String[] fields, final long[] values) {
this(fields, InternalUtils.longsToIterable(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final String[] fields, final Iterable extends Number> values) {
this(Arrays.asList(fields), values);
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field names
* @param value The first value
* @param values Any additional values
* @param The numeric type
*/
public EQUAL(final Iterable extends String> fields, final T value, final T... values) {
this(fields, InternalUtils.toList(value, values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
* @param The numeric type
*/
public EQUAL(final Iterable extends String> fields, final T[] values) {
this(fields, Arrays.asList(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final Iterable extends String> fields, final double[] values) {
this(fields, InternalUtils.doublesToIterable(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final Iterable extends String> fields, final int[] values) {
this(fields, InternalUtils.intsToIterable(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final Iterable extends String> fields, final long[] values) {
this(fields, InternalUtils.longsToIterable(values));
}
/**
* Constructs a new multiple field EQUAL fieldtext
* @param fields The field name
* @param values The field values
*/
public EQUAL(final Iterable extends String> fields, final Iterable extends Number> values) {
super("EQUAL", fields, InternalUtils.numbersToStrings(values));
Validate.isTrue(!getValues().isEmpty(), "No values specified");
}
public final double[] getNumericValues() {
return InternalUtils.stringsToDoubles(getValues());
}
public static EQUAL EQUAL(final String field, final T value, final T... values) {
return new EQUAL(field, value, values);
}
public static EQUAL EQUAL(final String field, final T[] values) {
return new EQUAL(field, values);
}
public static EQUAL EQUAL(final String field, final double[] values) {
return new EQUAL(field, values);
}
public static EQUAL EQUAL(final String field, final int[] values) {
return new EQUAL(field, values);
}
public static EQUAL EQUAL(final String field, final long[] values) {
return new EQUAL(field, values);
}
public static EQUAL EQUAL(final String field, final Iterable extends Number> values) {
return new EQUAL(field, values);
}
public static EQUAL EQUAL(final String[] fields, final T value, final T... values) {
return new EQUAL(fields, value, values);
}
public static EQUAL EQUAL(final String[] fields, final T[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final String[] fields, final double[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final String[] fields, final int[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final String[] fields, final long[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final String[] fields, final Iterable extends Number> values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final Iterable extends String> fields, final T value, final T... values) {
return new EQUAL(fields, value, values);
}
public static EQUAL EQUAL(final Iterable extends String> fields, final T[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final Iterable extends String> fields, final double[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final Iterable extends String> fields, final int[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final Iterable extends String> fields, final long[] values) {
return new EQUAL(fields, values);
}
public static EQUAL EQUAL(final Iterable extends String> fields, final Iterable extends Number> values) {
return new EQUAL(fields, values);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy