Tabnine Logo
SimpleTypeInfo.isSubType
Code IndexAdd Tabnine to your IDE (free)

How to use
isSubType
method
in
br.com.objectos.way.code.SimpleTypeInfo

Best Java code snippets using br.com.objectos.way.code.SimpleTypeInfo.isSubType (Showing top 3 results out of 315)

origin: br.com.objectos.way/pojo-plugin

public boolean instanceOf(Class<?> type) {
 if (typeInfo.isSubType(type)) {
  return true;
 }
 return runtimeInterfaceList.stream()
   .filter(iface -> iface.isSubType(type))
   .findAny()
   .isPresent();
}
origin: br.com.objectos.way/pojo-plugin

boolean instanceOf(Class<?> type) {
 SimpleTypeInfo returnTypeInfo = methodInfo.returnTypeInfo();
 return returnTypeInfo.isSubType(type);
}
origin: br.com.objectos.way/io-flat-pojo-plugin

public static RecordMethod of(Property property) {
 SimpleTypeInfo returnTypeInfo = property.returnTypeInfo();
 return returnTypeInfo.isSubType(Collection.class)
   ? CollectionRecordMethod.code(property, returnTypeInfo)
   : SingleRecordMethod.code(property, returnTypeInfo);
}
br.com.objectos.way.codeSimpleTypeInfoisSubType

Popular methods of SimpleTypeInfo

  • typeName
  • equals
  • isInfoOf
  • kind
  • nameInfo
  • newPrimitive
  • packageInfo
  • toArray
  • typeParameterInfoList
  • getTypeParameterInfoStream
  • isPrimitive
  • newType
  • isPrimitive,
  • newType,
  • simpleName,
  • typeNameRaw,
  • className,
  • classNameSuffix,
  • fileAt,
  • getDeclaredName,
  • getGetterPrefix

Popular in Java

  • Making http requests using okhttp
  • getSystemService (Context)
  • setScale (BigDecimal)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • From CI to AI: The AI layer in your organization
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