Uses of Enum Class
org.tquadrat.foundation.javacomposer.SuppressableWarnings
Packages that use SuppressableWarnings
Package
Description
JavaComposer is a Java toolkit for the generation of Java source
code.
The implementations for the interfaces from the package
org.tquadrat.foundation.javacomposer
.-
Uses of SuppressableWarnings in org.tquadrat.foundation.javacomposer
Methods in org.tquadrat.foundation.javacomposer that return SuppressableWarningsModifier and TypeMethodDescriptionstatic SuppressableWarnings
Returns the enum constant of this class with the specified name.static SuppressableWarnings[]
SuppressableWarnings.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.tquadrat.foundation.javacomposer with parameters of type SuppressableWarningsModifier and TypeMethodDescriptionTypeSpec.Builder.addSuppressableWarning
(SuppressableWarnings... warnings) Adds a suppressable warning for the type.final Optional
<AnnotationSpec> JavaComposer.createSuppressWarningsAnnotation
(SuppressableWarnings... warnings) Returns a@SuppressWarnings
annotation with the given values.static final AnnotationSpec
SuppressableWarnings.createSuppressWarningsAnnotation
(JavaComposer factory, SuppressableWarnings... suppress) Creates anAnnotationSpec
instance for the@SuppressWarnings
annotation.static final CodeBlock
SuppressableWarnings.createSuppressWarningsCommentForIDEA
(JavaComposer factory, SuppressableWarnings... suppress) Creates a comment (for IntelliJ IDEA) that suppresses the given warnings.Method parameters in org.tquadrat.foundation.javacomposer with type arguments of type SuppressableWarningsModifier and TypeMethodDescriptionfinal Optional
<AnnotationSpec> JavaComposer.createSuppressWarningsAnnotation
(Collection<SuppressableWarnings> warnings) Returns a@SuppressWarnings
annotation with the given values. -
Uses of SuppressableWarnings in org.tquadrat.foundation.javacomposer.internal
Fields in org.tquadrat.foundation.javacomposer.internal with type parameters of type SuppressableWarningsModifier and TypeFieldDescriptionprivate final Set
<SuppressableWarnings> TypeSpecImpl.BuilderImpl.m_SuppressableWarnings
The suppressable warnings for the new type.private final Set
<SuppressableWarnings> TypeSpecImpl.m_SuppressableWarnings
The suppressable warnings for the new type.Methods in org.tquadrat.foundation.javacomposer.internal that return types with arguments of type SuppressableWarningsModifier and TypeMethodDescriptionfinal Collection
<SuppressableWarnings> TypeSpecImpl.getSuppressableWarnings()
Returns the suppressable warnings that were set for this type.Methods in org.tquadrat.foundation.javacomposer.internal with parameters of type SuppressableWarningsModifier and TypeMethodDescriptionTypeSpecImpl.BuilderImpl.addSuppressableWarning
(SuppressableWarnings... warnings) Adds a suppressable warning for the type.