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

com.github.t3t5u.common.expression.BigDecimalLiteral Maven / Gradle / Ivy

The newest version!
package com.github.t3t5u.common.expression;

import java.math.BigDecimal;
import java.text.NumberFormat;

@SuppressWarnings("serial")
public class BigDecimalLiteral extends NumberLiteral {
	BigDecimalLiteral(final BigDecimal value, final NumberFormat format) {
		super(BigDecimal.class, value, format);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy