Interface Factory<E>

Record Components:
E - the type to produce

public interface Factory<E>
a factory for type E
Version:
4.8
  • Method Summary

    Modifier and Type
    Method
    Description
    method to call to get a new instance of the type E
  • Method Details

    • newInstance

      E newInstance()
      method to call to get a new instance of the type E
      Returns:
      a new instance of E