org.jpmml.rexp.RGenericVector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pmml-rexp Show documentation
Show all versions of pmml-rexp Show documentation
JPMML R to PMML converter
The newest version!
/*
* Copyright (c) 2016 Villu Ruusmann
*
* This file is part of JPMML-R
*
* JPMML-R is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JPMML-R 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
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with JPMML-R. If not, see .
*/
package org.jpmml.rexp;
import java.util.List;
import org.dmg.pmml.DataType;
public class RGenericVector extends RVector {
private List values = null;
public RGenericVector(List values, RPair attributes){
super(attributes);
setValues(values);
}
@Override
public DataType getDataType(){
throw new UnsupportedOperationException();
}
@Override
public int size(){
return this.values.size();
}
@Override
public RExp getValue(int index){
return this.values.get(index);
}
public RDoubleVector getDoubleValue(int index){
return getVectorValue(RDoubleVector.class, index);
}
public RFactorVector getFactorValue(int index){
return getVectorValue(RFactorVector.class, index);
}
public RGenericVector getGenericValue(int index){
return getVectorValue(RGenericVector.class, index);
}
public RIntegerVector getIntegerValue(int index){
return getVectorValue(RIntegerVector.class, index);
}
public RNumberVector> getNumericValue(int index){
return getVectorValue(RNumberVector.class, index);
}
public RStringVector getStringValue(int index){
return getVectorValue(RStringVector.class, index);
}
public RVector> getVectorValue(int index){
return getVectorValue(RVector.class, index);
}
private , E> V getVectorValue(Class clazz, int index){
RExp rexp = getValue(index);
try {
return clazz.cast(rexp);
} catch(ClassCastException cce){
throw new IllegalArgumentException("Invalid value on position " + (index + 1) + ". Expected " + RExpUtil.getVectorType(clazz) + ", got " + RExpUtil.getVectorType(rexp.getClass()));
}
}
public RBooleanVector getBooleanElement(String name){
return getBooleanElement(name, true);
}
public RBooleanVector getBooleanElement(String name, boolean required){
return getVectorElement(RBooleanVector.class, name, required);
}
public RDoubleVector getDoubleElement(String name){
return getDoubleElement(name, true);
}
public RDoubleVector getDoubleElement(String name, boolean required){
return getVectorElement(RDoubleVector.class, name, required);
}
public RFactorVector getFactorElement(String name){
return getFactorElement(name, true);
}
public RFactorVector getFactorElement(String name, boolean required){
return getVectorElement(RFactorVector.class, name, required);
}
public RGenericVector getGenericElement(String name){
return getGenericElement(name, true);
}
public RGenericVector getGenericElement(String name, boolean required){
return getVectorElement(RGenericVector.class, name, required);
}
public RIntegerVector getIntegerElement(String name){
return getIntegerElement(name, true);
}
public RIntegerVector getIntegerElement(String name, boolean required){
return getVectorElement(RIntegerVector.class, name, required);
}
public RNumberVector> getNumericElement(String name){
return getNumericElement(name, true);
}
public RNumberVector> getNumericElement(String name, boolean required){
return getVectorElement(RNumberVector.class, name, required);
}
public RStringVector getStringElement(String name){
return getStringElement(name, true);
}
public RStringVector getStringElement(String name, boolean required){
return getVectorElement(RStringVector.class, name, required);
}
public RVector> getVectorElement(String name){
return getVectorElement(name, true);
}
public RVector> getVectorElement(String name, boolean required){
return getVectorElement(RVector.class, name, required);
}
private , E> V getVectorElement(Class clazz, String name, boolean required){
RExp rexp = getElement(name, required);
try {
return clazz.cast(rexp);
} catch(ClassCastException cce){
throw new IllegalArgumentException("Invalid \'" + name + "\' element. Expected " + RExpUtil.getVectorType(clazz) + ", got " + RExpUtil.getVectorType(rexp.getClass()));
}
}
@Override
public List getValues(){
return this.values;
}
private void setValues(List values){
this.values = values;
}
}