Returns the name of the method belonging to this StackTraceElement. @return the name of the method, or " " if this information is not available.
()
| 175 | * is not available. |
| 176 | */ |
| 177 | public String getMethodName() { |
| 178 | return (methodName == null) ? "<unknown method>" : methodName; |
| 179 | } |
| 180 | |
| 181 | @Override |
| 182 | public int hashCode() { |