com.devonfw.cobigen.openapiplugin.inputreader.ModelConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapiplugin Show documentation
Show all versions of openapiplugin Show documentation
A Code-based incremental Generator
package com.devonfw.cobigen.openapiplugin.inputreader;
/**
* String constants of the java object model for generation. Outcome of the JavaInputReader.
*
* @author Malte Brunnlieb
* @version $Revision$
*/
public class ModelConstant {
/**
* Tag that stores the MAXIMUM constraint
*/
public static final String MAXIMUM = "maximum";
/**
* Tag that stores the MINIMUM constraint
*/
public static final String MINIMUM = "minimum";
/**
* Tag that stores the MAX_LENGTH constraint
*/
public static final String MAX_LENGTH = "maxLength";
/**
* Tag that stores the MIN_LENGTH constraint
*/
public static final String MIN_LENGTH = "minLength";
/**
* Tag that stores the NOTNULL constraint
*/
public static final String NOTNULL = "notNull";
/**
* Tag for check the constraint UNIQUE
*/
public static final String UNIQUE = "unique";
}