Tabnine Logo
PropertyDescriptor.getDocumentName
Code IndexAdd Tabnine to your IDE (free)

How to use
getDocumentName
method
in
de.smartics.properties.api.core.domain.PropertyDescriptor

Best Java code snippets using de.smartics.properties.api.core.domain.PropertyDescriptor.getDocumentName (Showing top 2 results out of 315)

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

private static String resolve(final PropertyDescriptor descriptor)
{
 final DocumentName name = descriptor.getDocumentName();
 final String target = name.getName();
 // final String target = descriptor.getKey().toString();
 return target;
}
origin: de.smartics.properties/smartics-properties-report

/**
 * Returns the name that uniquely identifies the property report within the
 * report set.
 *
 * @return the name that uniquely identifies the property report within the
 *         report set.
 */
public String getLocalName()
{
 final String metadataValue = descriptor.getDocumentMetaData().getName();
 if (StringUtils.isBlank(metadataValue))
 {
  return descriptor.getDocumentName().getName();
 }
 return metadataValue;
}
de.smartics.properties.api.core.domainPropertyDescriptorgetDocumentName

Javadoc

Returns the name of the document that identifies the document uniquely within the context of the project. It is used to select the projectdoc document in the META-INF folder.

Popular methods of PropertyDescriptor

  • getConstraints
    Returns a list of constraints a value for the property has to meet.
  • getKey
    Returns the key of the property. This value must not be null.
  • getDefaultExpression
    Returns the expression to use to construct the value of the property. An expression may reference an
  • getType
    Returns the type of the property value. This value must not be null. If there is no value range sp
  • getValueRange
    Returns the range of values allowed for this property. The returned value may be null if there is no
  • isMandatory
    Checks if the property is mandatory to be not null. If the property is not mandatory, it is optional
  • getCategories
    Returns the categories this property is associated with.
  • getDeclaringType
    Returns the type that declares the property that is described by this instance.
  • getDocumentMetaData
    Returns the meta data information for the property. This value must not be null.
  • getUpdateIntervalInMs
    Returns the update interval in milliseconds (ms). An application may cache the value of the property
  • getUseType
    Returns the use type of the property.
  • isRuntimeMutable
    Checks whether or not the property is mutable at runtime.
  • getUseType,
  • isRuntimeMutable,
  • isSecured

Popular in Java

  • Reading from database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • requestLocationUpdates (LocationManager)
  • onRequestPermissionsResult (Fragment)
  • Permission (java.security)
    Legacy security code; do not use.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Best IntelliJ 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