congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
PropertyMetaDataParser.addValueRange
Code IndexAdd Tabnine to your IDE (free)

How to use
addValueRange
method
in
de.smartics.properties.spi.core.metadata.PropertyMetaDataParser

Best Java code snippets using de.smartics.properties.spi.core.metadata.PropertyMetaDataParser.addValueRange (Showing top 1 results out of 315)

origin: de.smartics.properties/smartics-properties-core

/**
 * Reads the property descriptor information from the method.
 *
 * @param method the method to read the property descriptor.
 * @return the property descriptor provided by this method.
 * @throws NullPointerException if {@code method} is <code>null</code>.
 */
public PropertyDescriptor readDescriptor(final Method method)
 throws NullPointerException
{
 Arg.checkNotNull("method", method);
 final PropertyMetaData.Builder builder = new PropertyMetaData.Builder();
 final Class<?> declaringType = method.getDeclaringClass();
 final PropertyKey key = readKey(method);
 final PropertyType type = readType(method);
 builder.with(new PropertyContextProxy(context))
   .withDeclaringType(declaringType).with(key).with(type);
 addValueRange(builder, method);
 addExpression(builder, method);
 addLifecycle(builder, method);
 addConstraints(builder, method);
 addDocumentProxy(builder, method, key);
 addComments(builder);
 addSecured(builder, method);
 addCategories(builder, method);
 addUseType(builder, method);
 return builder.build();
}
de.smartics.properties.spi.core.metadataPropertyMetaDataParseraddValueRange

Popular methods of PropertyMetaDataParser

  • readDescriptor
    Reads the property descriptor information from the method.
  • create
    Convenience constructor to generate property descriptors with access to property comments.
  • readKey
    Reads the property key information from the method.
  • readPropertySetName
  • <init>
    Default constructor to generate property descriptors with comments.
  • addCategories
  • addCategoriesFromAnnotation
  • addComments
  • addConstraints
  • addDocumentProxy
  • addExpression
  • addLifecycle
  • addExpression,
  • addLifecycle,
  • addSecured,
  • addUseType,
  • calcElementConstraintMethod,
  • calcElementConstraints,
  • calcElementType,
  • calcElementsConstraintsType,
  • calcPropertyName

Popular in Java

  • Making http post requests using okhttp
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • putExtra (Intent)
  • Kernel (java.awt.image)
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now