org.openstreetmap.atlas.utilities.command.parsing.ArgumentArity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.utilities.command.parsing;
/**
* The arity of an argument.
*
* @see "https://en.wikipedia.org/wiki/Arity"
* @author lcram
*/
public enum ArgumentArity
{
UNARY,
VARIADIC
}