Indicates whether this member is synthetic from the JVM's perspective. @return true if the synthetic modifier bit is present
()
| 102 | * @return {@code true} if the synthetic modifier bit is present |
| 103 | */ |
| 104 | default boolean isSynthetic() { |
| 105 | return (getModifiers() & /*Modifier.SYNTHETIC*/0x1000) != 0; |
| 106 | } |
| 107 |
no outgoing calls
no test coverage detected