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

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

package com.devonfw.cobigen.templates.devon4j.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 this.value;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy