Enum WSTCPCodecConfigurator

    • Method Detail

      • values

        public static WSTCPCodecConfigurator[] 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 (WSTCPCodecConfigurator c : WSTCPCodecConfigurator.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WSTCPCodecConfigurator valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getMinAttributeValueSize

        public int getMinAttributeValueSize()
        Gets the minimum size of attribute values that will be indexed.
        Returns:
        The minimum attribute values size.
      • setMinAttributeValueSize

        public void setMinAttributeValueSize​(int minAttributeValueSize)
        Sets the minimum size of attribute values that will be indexed.
        Parameters:
        size - the minimum attribute values size.
      • getMaxAttributeValueSize

        public int getMaxAttributeValueSize()
        Gets the maximum size of attribute values that will be indexed.
        Returns:
        The maximum attribute values size.
      • setMaxAttributeValueSize

        public void setMaxAttributeValueSize​(int maxAttributeValueSize)
        Sets the maximum size of attribute values that will be indexed.
        Parameters:
        size - the maximum attribute values size.
      • getAttributeValueMapMemoryLimit

        public int getAttributeValueMapMemoryLimit()
        Gets the limit on the memory size of Map of attribute values that will be indexed.
        Returns:
        The attribute value size limit.
      • setAttributeValueMapMemoryLimit

        public void setAttributeValueMapMemoryLimit​(int attributeValueMapMemoryLimit)
        Sets the limit on the memory size of Map of attribute values that will be indexed.
        Parameters:
        size - The attribute value size limit. Any value less that a length of size limit will be indexed.
      • getMinCharacterContentChunkSize

        public int getMinCharacterContentChunkSize()
        Gets the minimum size of character content chunks that will be indexed.
        Returns:
        The minimum character content chunk size.
      • setMinCharacterContentChunkSize

        public void setMinCharacterContentChunkSize​(int minCharacterContentChunkSize)
        Sets the minimum size of character content chunks that will be indexed.
        Parameters:
        size - the minimum character content chunk size.
      • getMaxCharacterContentChunkSize

        public int getMaxCharacterContentChunkSize()
        Gets the maximum size of character content chunks that will be indexed.
        Returns:
        The maximum character content chunk size.
      • setMaxCharacterContentChunkSize

        public void setMaxCharacterContentChunkSize​(int maxCharacterContentChunkSize)
        Sets the maximum size of character content chunks that will be indexed.
        Parameters:
        size - the maximum character content chunk size.
      • getCharacterContentChunkMapMemoryLimit

        public int getCharacterContentChunkMapMemoryLimit()
        Gets the limit on the memory size of Map of attribute values that will be indexed.
        Returns:
        The attribute value size limit.
      • setCharacterContentChunkMapMemoryLimit

        public void setCharacterContentChunkMapMemoryLimit​(int characterContentChunkMapMemoryLimit)
        Sets the limit on the memory size of Map of attribute values that will be indexed.
        Parameters:
        size - The attribute value size limit. Any value less that a length of size limit will be indexed.