Interface IdentifierFactory<T,R extends Identifier<T>>

Type Parameters:
T - the type of the Identifier's value
R - the type of the Identifier itself
All Known Subinterfaces:
NumericIdentifierFactory<T>, StringIdentifierFactory<T>, UuidIdentifierFactory<T>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface IdentifierFactory<T,R extends Identifier<T>>
Abstract function for creation new identifiers.
Author:
Vincent Nadoll
  • Method Summary

    Modifier and Type
    Method
    Description
    create(T id)
     
  • Method Details

    • create

      R create(T id)