Enum SummaryTransform

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SummaryTransform>

    public enum SummaryTransform
    extends java.lang.Enum<SummaryTransform>
    A value class representing a search time transformation on a summary field.
    Author:
    bratseth
    • Method Detail

      • values

        public static SummaryTransform[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SummaryTransform c : SummaryTransform.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SummaryTransform valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getName

        public java.lang.String getName()
      • bold

        public SummaryTransform bold()
        Returns the bolded version of this transform if possible, throws if not
      • unbold

        public SummaryTransform unbold()
        Returns the unbolded version of this transform
      • isBolded

        public boolean isBolded()
        Returns whether this value is bolded
      • isDynamic

        public boolean isDynamic()
        Whether this is dynamically generated, both teasers and bolded fields are dynamic
      • isTeaser

        public boolean isTeaser()
        Returns whether this is a teaser, not the complete field value
      • isInMemory

        public boolean isInMemory()
        Returns whether this transform always gets its value by accessing memory only
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<SummaryTransform>