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

org.appng.api.support.field.DecimalFieldConverter Maven / Gradle / Ivy

There is a newer version: 1.24.5
Show newest version
/*
 * Copyright 2011-2019 the original author or authors.
 *
 * Licensed 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.
 */
package org.appng.api.support.field;

import org.appng.api.Environment;
import org.appng.api.FieldConverter;
import org.appng.xml.platform.FieldDef;
import org.appng.xml.platform.FieldType;
import org.slf4j.Logger;
import org.springframework.context.MessageSource;

import lombok.extern.slf4j.Slf4j;

/**
 * 
 * Base {@link FieldConverter} for {@link FieldDef}initions of type {@link FieldType#DECIMAL}.
 * 
 * @author Matthias Müller
 * 
 */
@Slf4j
class DecimalFieldConverter extends NumberFieldConverter implements FieldConverter {

	private static final String ERROR_KEY = "invalid.digit";
	private static final String DEFAULT_DECIMAL_PATTERN = "#.##";

	DecimalFieldConverter(Environment environment, MessageSource messageSource) {
		super(environment, messageSource, DEFAULT_DECIMAL_PATTERN, ERROR_KEY);
	}

	protected Logger getLog() {
		return LOGGER;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy