Returns true if this scope is the Singleton @Singleton scope.
()
| 78 | |
| 79 | /** Returns {@code true} if this scope is the {@link Singleton @Singleton} scope. */ |
| 80 | public final boolean isSingleton() { |
| 81 | return isScope(Singleton.class); |
| 82 | } |
| 83 | |
| 84 | /** Returns {@code true} if this scope is the {@link Reusable @Reusable} scope. */ |
| 85 | public final boolean isReusable() { |