Returns whether this method is interface-default. @return true if this method is default
()
| 193 | * @return true if this method is default |
| 194 | */ |
| 195 | public boolean isDefault() { |
| 196 | return (getModifiers() & (Modifier.ABSTRACT | Modifier.PUBLIC | Modifier.STATIC)) == Modifier.PUBLIC && getDeclaringClass().isInterface; |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * Determines if the given method has the same name, parameters, return type |
nothing calls this directly
no test coverage detected