congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
CodeDefinition.parseForTypeNamesInPackage
Code IndexAdd Tabnine to your IDE (free)

How to use
parseForTypeNamesInPackage
method
in
org.eclipse.persistence.internal.codegen.CodeDefinition

Best Java code snippets using org.eclipse.persistence.internal.codegen.CodeDefinition.parseForTypeNamesInPackage (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Returns a set of java.lang.String type names included in longString.
 * Will only look for ValueHolder, java.util collection types, and TopLink
 * indirect collection types.
 * All other searches too intractable at this point.
 */
protected static Set parseForTypeNames(String longString) {
  Set typeNames = new HashSet();
  if (longString != null) {
    typeNames.addAll(parseForTypeNamesInPackage(longString, JAVA_LANG_PACKAGE_NAME));
    typeNames.addAll(parseForTypeNamesInPackage(longString, JAVA_UTIL_PACKAGE_NAME));
    typeNames.addAll(parseForTypeNamesInPackage(longString, TOPLINK_INDIRECTION_PACKAGE_NAME));
  }
  return typeNames;
}
origin: com.haulmont.thirdparty/eclipselink

/**
 * Returns a set of java.lang.String type names included in longString.
 * Will only look for ValueHolder, java.util collection types, and TopLink
 * indirect collection types.
 * All other searches too intractable at this point.
 */
protected static Set parseForTypeNames(String longString) {
  Set typeNames = new HashSet();
  if (longString != null) {
    typeNames.addAll(parseForTypeNamesInPackage(longString, JAVA_LANG_PACKAGE_NAME));
    typeNames.addAll(parseForTypeNamesInPackage(longString, JAVA_UTIL_PACKAGE_NAME));
    typeNames.addAll(parseForTypeNamesInPackage(longString, TOPLINK_INDIRECTION_PACKAGE_NAME));
  }
  return typeNames;
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Returns a set of java.lang.String type names included in longString.
 * Will only look for ValueHolder, java.util collection types, and TopLink
 * indirect collection types.
 * All other searches too intractable at this point.
 */
protected static Set parseForTypeNames(String longString) {
  Set typeNames = new HashSet();
  if (longString != null) {
    typeNames.addAll(parseForTypeNamesInPackage(longString, JAVA_LANG_PACKAGE_NAME));
    typeNames.addAll(parseForTypeNamesInPackage(longString, JAVA_UTIL_PACKAGE_NAME));
    typeNames.addAll(parseForTypeNamesInPackage(longString, TOPLINK_INDIRECTION_PACKAGE_NAME));
  }
  return typeNames;
}
org.eclipse.persistence.internal.codegenCodeDefinitionparseForTypeNamesInPackage

Popular methods of CodeDefinition

  • adjustmentNeededForType
  • getAccessLevel
  • getComment
  • packageName
  • putTypeNameInMap
    Used for calculating imports. @see org.eclipse.persistence.internal.codegen.ClassDefinition#calculat
  • shortName
    Removes the package name, if there is one. Also removes any trailing brackets. Assumes that typeName
  • write
    Write the code out to the generator's stream.
  • writeBody
    Write the code out to the generator's stream.

Popular in Java

  • Reactive rest calls using spring rest template
  • getSystemService (Context)
  • getApplicationContext (Context)
  • compareTo (BigDecimal)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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