Example usage for com.google.common.primitives Chars compare

List of usage examples for com.google.common.primitives Chars compare

Introduction

In this page you can find the example usage for com.google.common.primitives Chars compare.

Prototype

public static int compare(char a, char b) 

Source Link

Document

Compares the two specified char values.

Usage

From source file:org.n52.iceland.util.Comparables.java

public static int compare(char x, char y) {
    return Chars.compare(x, y);
}