org.apache.fulcrum.intake.model.DoubleField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fulcrum-intake Show documentation
Show all versions of fulcrum-intake Show documentation
This Service provides rule-based input validation
package org.apache.fulcrum.intake.model;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.fulcrum.intake.IntakeException;
import org.apache.fulcrum.intake.validator.DoubleValidator;
/**
* Processor for double fields.
*
* @author Thomas Vandahl
* @version $Id: DoubleField.java 1674320 2015-04-17 14:27:19Z tv $
*/
public class DoubleField
extends Field
{
/** Serial version */
private static final long serialVersionUID = -1685467778904884936L;
/**
* Constructor.
*
* @param field xml field definition object
* @param group xml group definition object
* @throws IntakeException thrown by superclass
*/
public DoubleField(XmlField field, Group group)
throws IntakeException
{
super(field, group);
}
/**
* Sets the default value for a Double Field
*
* @param prop Parameter for the default values
*/
@Override
public void setDefaultValue(String prop)
{
defaultValue = null;
if (prop == null)
{
return;
}
defaultValue = new Double(prop);
}
/**
* Set the empty Value. This value is used if Intake
* maps a field to a parameter returned by the user and
* the corresponding field is either empty (empty string)
* or non-existant.
*
* @param prop The value to use if the field is empty.
*/
@Override
public void setEmptyValue(String prop)
{
emptyValue = null;
if (prop == null)
{
return;
}
emptyValue = new Double(prop);
}
/**
* Provides access to emptyValue such that the value returned will be
* acceptable as an argument parameter to Method.invoke. Subclasses
* that deal with primitive types should ensure that they return an
* appropriate value wrapped in the object wrapper class for the
* primitive type.
*
* @return the value to use when the field is empty or an Object that
* wraps the empty value for primitive types.
*/
@Override
protected Object getSafeEmptyValue()
{
if (isMultiValued)
{
return new double[0];
}
else
{
return (null == getEmptyValue())
? new Double(0.0) : getEmptyValue();
}
}
/**
* A suitable validator.
*
* @return A suitable validator
*/
@Override
protected String getDefaultValidator()
{
return DoubleValidator.class.getName();
}
/**
* Sets the value of the field from data in the parser.
*/
@Override
protected void doSetValue()
{
if (isMultiValued)
{
Double[] inputs = parser.getDoubleObjects(getKey());
double[] values = new double[inputs.length];
for (int i = 0; i < inputs.length; i++)
{
values[i] = inputs[i] == null
? (getEmptyValue()).doubleValue()
: inputs[i].doubleValue();
}
setTestValue(values);
}
else
{
setTestValue(parser.getDoubleObject(getKey(), getEmptyValue()));
}
}
}