Package com.adidas.dam.marvin.domain

Examples of com.adidas.dam.marvin.domain.ODataType


   * annotation, "string" in all other cases
   */
  public static String getODataType(final Class<?> clazz, final String fieldName) {
    final Field field = findField(clazz, fieldName);
    if (field != null) {
      final ODataType oDataType = field.getAnnotation(ODataType.class);
      if (oDataType != null) {
        return oDataType.value();
      }
    }
    return "string";
  }
View Full Code Here

TOP

Related Classes of com.adidas.dam.marvin.domain.ODataType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.