[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[[["\u003cp\u003e\u003ccode\u003eParserUtils\u003c/code\u003e is a helper class containing stateless utility functions for the query parser.\u003c/p\u003e\n"],["\u003cp\u003eIt inherits from \u003ccode\u003ejava.lang.Object\u003c/code\u003e and provides access to all of its member functions.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eisDate(CharSequence text)\u003c/code\u003e checks if a given string is in the ISO 8601 date format.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eisNumber(CharSequence text)\u003c/code\u003e determines if a string represents a floating-point number.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003etrimLast(String text)\u003c/code\u003e removes the final character from a given string and \u003ccode\u003eunescapePhraseText(CharSequence phrase)\u003c/code\u003e extracts and processes phrase text by removing quotes and interpreting escape sequences.\u003c/p\u003e\n"]]],[],null,["# Class ParserUtils (2.0.0)\n\n public class ParserUtils\n\nA helper class that holds various, state-less utility\nfunctions used by the query parser. \n\nInheritance\n-----------\n\n[java.lang.Object](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html) \\\u003e ParserUtils \n\nInherited Members\n-----------------\n\n[Object.clone()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#clone--) \n[Object.equals(Object)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals-java.lang.Object-) \n[Object.finalize()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#finalize--) \n[Object.getClass()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--) \n[Object.hashCode()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode--) \n[Object.notify()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--) \n[Object.notifyAll()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--) \n[Object.toString()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#toString--) \n[Object.wait()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--) \n[Object.wait(long)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-) \n[Object.wait(long,int)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-)\n\nStatic Methods\n--------------\n\n### isDate(CharSequence text)\n\n public static boolean isDate(CharSequence text)\n\nReturns if the given string looks like a date to us. We only accept ISO 8601 dates, which have\nthe dddd-dd-dd format.\n\n### isNumber(CharSequence text)\n\n public static boolean isNumber(CharSequence text)\n\nReturns whether or not the given text looks like a number.\nThe number is defined as\n'-'? digit\\* ('.' digit\\* ('E' ('+' \\| '-')? digit+)?)?\n\n### trimLast(String text)\n\n public static String trimLast(String text)\n\nRemoves the last character from the given text\n\n### unescapePhraseText(CharSequence phrase)\n\n public static String unescapePhraseText(CharSequence phrase)\n\nExtracts phrase text by removing quotes from either end, and interpreting escape sequences."]]