Class CodePointMap.Range

    • Constructor Detail

      • Range

        public Range()
        Constructor. Sets start and end to -1 and value to 0.
        Status:
        Stable ICU 63.
    • Method Detail

      • getStart

        public int getStart()
        Returns:
        the start code point
        Status:
        Stable ICU 63.
      • getEnd

        public int getEnd()
        Returns:
        the (inclusive) end code point
        Status:
        Stable ICU 63.
      • getValue

        public int getValue()
        Returns:
        the range value
        Status:
        Stable ICU 63.
      • set

        public void set​(int start,
                        int end,
                        int value)
        Sets the range. When using CodePointMap.iterator(), iteration will resume after the newly set end.
        Parameters:
        start - new start code point
        end - new end code point
        value - new value
        Status:
        Stable ICU 63.