Tabnine Logo
MethodInfo.hasAnnotation
Code IndexAdd Tabnine to your IDE (free)

How to use
hasAnnotation
method
in
br.com.objectos.way.code.MethodInfo

Best Java code snippets using br.com.objectos.way.code.MethodInfo.hasAnnotation (Showing top 5 results out of 315)

origin: br.com.objectos/way-code

 @Override
 public boolean apply(MethodInfo input) {
  return !input.hasAnnotation(annotationType);
 }
}
origin: br.com.objectos.way/pojo-plugin

@Override
public boolean test(MethodInfo method) {
 return method.hasAnnotation(type);
}
origin: br.com.objectos/way-code

@Override
public boolean apply(MethodInfo input) {
 return input.hasAnnotation(annotationType);
}
origin: br.com.objectos.way/pojo-plugin

private static List<Property> of0(PojoInfo pojoInfo) {
 return pojoInfo.methodInfoStream()
   .filter(m -> m.hasModifierInfo(ModifierInfo.ABSTRACT))
   .filter(m -> !m.hasReturnTypeInfo(SimpleTypePrimitives.VOID))
   .filter(m -> m.hasParameterInfoListSize(0))
   .filter(m -> !m.hasAnnotation(Invalidate.class))
   .map(m -> new Property(pojoInfo, m))
   .collect(MoreCollectors.toImmutableList());
}
origin: br.com.objectos.way/pojo-plugin

private static List<Property> of0(Mode mode, TypeInfo typeInfo) {
 Naming naming = Naming.of(typeInfo);
 return typeInfo.methodInfoStream()
   .filter(m -> m.hasModifierInfo(ModifierInfo.ABSTRACT))
   .filter(m -> !m.hasReturnTypeInfo(SimpleTypePrimitives.VOID))
   .filter(m -> m.hasParameterInfoListSize(0))
   .filter(m -> !m.hasAnnotation(Invalidate.class))
   .map(m -> new Property(mode, naming, m))
   .collect(MoreCollectors.toImmutableList());
}
br.com.objectos.way.codeMethodInfohasAnnotation

Popular methods of MethodInfo

  • fieldName
  • hasModifierInfo
  • hasName
  • hasParameterInfoListSize
  • name
  • returnTypeInfo
  • hasAccessInfo
  • hasReturnTypeInfo
  • overrideWriter
  • accessInfo
  • annotationInfoAnnotatedWith
  • annotationInfoList
  • annotationInfoAnnotatedWith,
  • annotationInfoList,
  • annotationInfoMap,
  • codeWriter,
  • compilationError,
  • equals,
  • fieldWriter,
  • getClassName,
  • getterPrefix

Popular in Java

  • Running tasks concurrently on multiple threads
  • runOnUiThread (Activity)
  • getContentResolver (Context)
  • setScale (BigDecimal)
  • String (java.lang)
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • JComboBox (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Github Copilot alternatives
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