The java.text.List.contains is a method in the Java programming language, belonging to the java.text package. This method is used to check whether a specific element is present in a given List or not. It returns a boolean value - true if the element is found in the List, and false if it is not. This method enables developers to efficiently determine the presence of an element in a List, allowing them to make decisions based on the existence or absence of an element in the List.
Java List.contains - 15 examples found. These are the top rated real world Java examples of java.text.List.contains extracted from open source projects. You can rate examples to help us improve the quality of examples.