-
Notifications
You must be signed in to change notification settings - Fork 95
Scala web templates: xylo.java reflect
Stefan Endrullis edited this page Jun 10, 2019
·
1 revision
This file contains templates for the Java Reflection API.
Method templates:
-
.isAbstract
- Modifier.isAbstract($expr$ .getModifiers) -
.isFinal
- Modifier.isFinal($expr$ .getModifiers) -
.isInterface
- Modifier.isInterface($expr$ .getModifiers) -
.isNative
- Modifier.isNative($expr$ .getModifiers) -
.isPrivate
- Modifier.isPrivate($expr$ .getModifiers) -
.isProtected
- Modifier.isProtected($expr$ .getModifiers) -
.isPublic
- Modifier.isPublic($expr$ .getModifiers) -
.isStatic
- Modifier.isStatic($expr$ .getModifiers) -
.isStrict
- Modifier.isStrict($expr$ .getModifiers) -
.isSynchronized
- Modifier.isSynchronized($expr$ .getModifiers) -
.isTransient
- Modifier.isTransient($expr$ .getModifiers) -
.isVolatile
- Modifier.isVolatile($expr$ .getModifiers)