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

How to use
createTypeVariable
method
in
org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.TypeEnvironment

Best Java code snippets using org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.TypeEnvironment.createTypeVariable (Showing top 3 results out of 315)

origin: org.eclipse/org.eclipse.jdt.ui

public TType create(ITypeBinding binding) {
  if (binding.isPrimitive()) {
    return createPrimitiveType(binding);
  } else if (binding.isArray()) {
    return createArrayType(binding);
  } else if (binding.isRawType()) {
    return createRawType(binding);
  } else if (binding.isGenericType()) {
    return createGenericType(binding);
  } else if (binding.isParameterizedType()) {
    return createParameterizedType(binding);
  } else if (binding.isTypeVariable()) {
    return createTypeVariable(binding);
  } else if (binding.isWildcardType()) {
    if (binding.getBound() == null) {
      return createUnboundWildcardType(binding);
    } else if (binding.isUpperbound()) {
      return createExtendsWildCardType(binding);
    } else {
      return createSuperWildCardType(binding);
    }
  } else if (binding.isCapture()) {
    return createCaptureType(binding);
  }
  if ("null".equals(binding.getName())) //$NON-NLS-1$
    return NULL;
  return createStandardType(binding);
}

origin: org.eclipse.jdt/org.eclipse.jdt.core.manipulation

  return createParameterizedType(binding);
} else if (binding.isTypeVariable()) {
  return createTypeVariable(binding);
} else if (binding.isWildcardType()) {
  if (binding.getBound() == null) {
origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

  return createParameterizedType(binding);
} else if (binding.isTypeVariable()) {
  return createTypeVariable(binding);
} else if (binding.isWildcardType()) {
  if (binding.getBound() == null) {
org.eclipse.jdt.internal.corext.refactoring.typeconstraints.typesTypeEnvironmentcreateTypeVariable

Popular methods of TypeEnvironment

  • <init>
  • create
  • createArrayType
  • getJavaLangObject
    Returns the TType for java.lang.Object. Warning: currently returns null unless this type environment
  • initializeJavaLangObject
  • cacheSubType
  • cacheSubTypes
  • createBoxed
  • createCaptureType
  • createExtendsWildCardType
  • createGenericType
  • createParameterizedType
  • createGenericType,
  • createParameterizedType,
  • createPrimitiveType,
  • createRawType,
  • createStandardType,
  • createSuperWildCardType,
  • createUnBoxed,
  • createUnboundWildcardType,
  • getArrayTypesMap

Popular in Java

  • Reading from database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • getSupportFragmentManager (FragmentActivity)
  • onCreateOptionsMenu (Activity)
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Collectors (java.util.stream)
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Top 17 Free Sublime Text Plugins
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