Package org.derive4j.processor.api.model
Class DataDeconstructor
- java.lang.Object
-
- org.derive4j.processor.api.model.DataDeconstructor
-
- Direct Known Subclasses:
DataDeconstructors.Deconstructor
,DataDeconstructors.Lazy
@Data public abstract class DataDeconstructor extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
DataDeconstructor.Case<R>
-
Constructor Summary
Constructors Constructor Description DataDeconstructor()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.util.List<javax.lang.model.type.TypeVariable>
argumentTypeVariables()
abstract <R> R
match(DataDeconstructor.Case<R> deconstructor)
javax.lang.model.element.ExecutableElement
method()
javax.lang.model.type.ExecutableType
methodType()
javax.lang.model.type.TypeVariable
returnTypeVariable()
javax.lang.model.type.ExecutableType
visitorMethodType()
javax.lang.model.element.VariableElement
visitorParam()
javax.lang.model.type.DeclaredType
visitorType()
-
-
-
Method Detail
-
method
public javax.lang.model.element.ExecutableElement method()
-
argumentTypeVariables
public java.util.List<javax.lang.model.type.TypeVariable> argumentTypeVariables()
-
returnTypeVariable
public javax.lang.model.type.TypeVariable returnTypeVariable()
-
methodType
public javax.lang.model.type.ExecutableType methodType()
-
visitorMethodType
public javax.lang.model.type.ExecutableType visitorMethodType()
-
visitorParam
public javax.lang.model.element.VariableElement visitorParam()
-
visitorType
public javax.lang.model.type.DeclaredType visitorType()
-
match
public abstract <R> R match(DataDeconstructor.Case<R> deconstructor)
-
-