org.mapfish.print.attribute.StringArrayAttribute Maven / Gradle / Ivy
package org.mapfish.print.attribute;
/**
* An attribute that can contain an array of strings.
* [[examples=verboseExample]]
* @author Jesse on 9/13/2014.
*/
public class StringArrayAttribute extends PrimitiveAttribute {
/**
* Constructor.
*/
@SuppressWarnings("unchecked")
public StringArrayAttribute() {
super((Class) new String[0].getClass());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy