The `com.google.common.base.Splitter.on` method in Java is a part of the Google Guava library, specifically from the `com.google.common.base` package. It is a utility method that creates a `Splitter` object and configures it to use a given delimiter. The `Splitter` class is used for splitting strings into substrings based on a specific pattern or delimiter. The `on` method accepts a delimiter as input and returns a `Splitter` object that is ready for use in splitting strings using that delimiter.
Java Splitter.on - 30 examples found. These are the top rated real world Java examples of com.google.common.base.Splitter.on extracted from open source projects. You can rate examples to help us improve the quality of examples.