Package org.apache.bval.jsr.metadata
Class Signature
- java.lang.Object
-
- org.apache.bval.jsr.metadata.Signature
-
- All Implemented Interfaces:
Comparable<Signature>
public final class Signature extends Object implements Comparable<Signature>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Signature sig)
boolean
equals(Object obj)
String
getName()
Class<?>[]
getParameterTypes()
int
hashCode()
boolean
isGetter()
static Signature
of(Executable x)
String
toString()
-
-
-
Method Detail
-
of
public static Signature of(Executable x)
-
getName
public String getName()
-
getParameterTypes
public Class<?>[] getParameterTypes()
-
compareTo
public int compareTo(Signature sig)
- Specified by:
compareTo
in interfaceComparable<Signature>
-
isGetter
public boolean isGetter()
-
-