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

com.devonfw.cobigen.templates.oasp4j.constants.Field Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
package com.devonfw.cobigen.templates.oasp4j.constants;

/**
 * Contains the used keys for the pojo field mapping
 */
public enum Field {

    /**
     * Name of the field
     */
    NAME("name"),
    /**
     * Type of the field
     */
    TYPE("type"),
    /**
     * Canonical Type of the field
     */
    CANONICAL_TYPE("canonicalType"),
    /**
     * The Javadoc of the field
     */
    JAVA_DOC("javaDoc"),
    /**
     * Annotations
     */
    ANNOTATIONS("annotations");

    /**
     * key value
     */
    private String value;

    /**
     * @param value
     *            of the key
     */
    Field(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy