Interface AttributeDateType

All Superinterfaces:
AttributeType

public interface AttributeDateType extends AttributeType
AttributeDateType
Example to create an instance using the builder pattern

     AttributeDateType attributeDateType = AttributeDateType.builder()
             .build()
 
  • Field Details

  • Method Details

    • of

      static AttributeDateType of()
      factory method
      Returns:
      instance of AttributeDateType
    • of

      static AttributeDateType of(AttributeDateType template)
      factory method to create a shallow copy AttributeDateType
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of AttributeDateType
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static AttributeDateTypeBuilder builder()
      builder factory method for AttributeDateType
      Returns:
      builder
    • builder

      static AttributeDateTypeBuilder builder(AttributeDateType template)
      create builder for AttributeDateType instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withAttributeDateType

      default <T> T withAttributeDateType(Function<AttributeDateType,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<AttributeDateType> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference