Cast the given object to the type contained by this TypedKey. @param object The object to be cast to the type managed by this TypedKey @return The given object, cast to the type managed by this TypedKey
(Object object)
| 67 | * @return The given object, cast to the type managed by this TypedKey |
| 68 | */ |
| 69 | @SuppressWarnings("unchecked") |
| 70 | public T cast(Object object) |
| 71 | { |
| 72 | return (T) object; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Returns the "Default Value" to be used when there is no value for the |