In our code base, I have seen the following code snippet and I could not figure out what it is (that is why, I could not start searching for more information). The code snippet is as follows;
TypedId.< UserGroupsVO > valueOf( 1000L )
For more clarification, the definition of the TypedId class is as follows;
public final class TypedId< T > implements Serializable, Comparable< TypedId< T >>
Under which topic can one learn more about this syntax and what it means?
EDIT
After comments, I need to clarify my question. In my question, I did not mean the Generics. The part, i did not understand is the point between TypedId with <...> and there is a space between <...> with valueOf
.