
com.google.re2j.Characters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.search.experiences.service
Show all versions of com.liferay.search.experiences.service
Liferay Search Experiences Service
The newest version!
/*
* Copyright (c) 2020 The Go Authors. All rights reserved.
*
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
package com.google.re2j;
/** Wraps Character methods to be overridden for GWT. */
final class Characters {
private Characters() {}
static int toLowerCase(int codePoint) {
return Character.toLowerCase(codePoint);
}
static int toUpperCase(int codePoint) {
return Character.toUpperCase(codePoint);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy