Interface PatternComponent


public interface PatternComponent
PatternComponent
Example to create an instance using the builder pattern

     PatternComponent patternComponent = PatternComponent.builder()
             .build()
 
  • Method Details

    • getType

      @NotNull @NotNull String getType()
      Returns:
      type
    • deepCopy

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

      default <T> T withPatternComponent(Function<PatternComponent,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<PatternComponent> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference