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

org.mapfish.print.attribute.IntegerAttribute Maven / Gradle / Ivy

There is a newer version: 3.22.0
Show newest version
package org.mapfish.print.attribute;


/**
 * 

An integer type attribute.

* [[examples=verboseExample]] */ public class IntegerAttribute extends PrimitiveAttribute { /** * Constructor. */ public IntegerAttribute() { super(Integer.class); } /** *

A default value for this attribute. Example:

*

     *     attributes:
     *       title: !integer
     *         default: 42
* * @param value The default value. */ public final void setDefault(final Integer value) { this.defaultValue = value; } @Override public Class getValueType() { return Integer.class; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy