elemental2.core.JsString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-core Show documentation
Show all versions of elemental2-core Show documentation
Thin Java abstractions for the standard built-in objects for Javascript.
package elemental2.core;
import jsinterop.annotations.JsFunction;
import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;
@JsType(isNative = true, name = "String", namespace = JsPackage.GLOBAL)
public class JsString implements JsIterable {
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface LocaleCompareLocalesUnionType {
@JsOverlay
static JsString.LocaleCompareLocalesUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default String asString() {
return Js.asString(this);
}
@JsOverlay
default String[] asStringArray() {
return Js.cast(this);
}
@JsOverlay
default boolean isString() {
return (Object) this instanceof String;
}
@JsOverlay
default boolean isStringArray() {
return (Object) this instanceof Object[];
}
}
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface ReplacePatternUnionType {
@JsOverlay
static JsString.ReplacePatternUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default JsRegExp asJsRegExp() {
return Js.cast(this);
}
@JsOverlay
default String asString() {
return Js.asString(this);
}
@JsOverlay
default boolean isJsRegExp() {
return (Object) this instanceof JsRegExp;
}
@JsOverlay
default boolean isString() {
return (Object) this instanceof String;
}
}
@JsFunction
public interface ReplaceReplacementFn {
Object onInvoke(String p0, Object... p1);
}
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface ReplaceReplacementUnionType {
@JsOverlay
static JsString.ReplaceReplacementUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default JsString.ReplaceReplacementFn asReplaceReplacementFn() {
return Js.cast(this);
}
@JsOverlay
default String asString() {
return Js.asString(this);
}
@JsOverlay
default boolean isReplaceReplacementFn() {
return (Object) this instanceof JsString.ReplaceReplacementFn;
}
@JsOverlay
default boolean isString() {
return (Object) this instanceof String;
}
}
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface SearchPatternUnionType {
@JsOverlay
static JsString.SearchPatternUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default JsRegExp asJsRegExp() {
return Js.cast(this);
}
@JsOverlay
default String asString() {
return Js.asString(this);
}
@JsOverlay
default boolean isJsRegExp() {
return (Object) this instanceof JsRegExp;
}
@JsOverlay
default boolean isString() {
return (Object) this instanceof String;
}
}
public static native String fromCharCode(int... var_args);
public static native String fromCodePoint(int codePoint, int... var_args);
public static native String raw(ITemplateArray template, Object... var_args);
public int length;
public JsString() {}
public JsString(Object str) {}
public native String anchor();
public native String big();
public native String blink();
public native String bold();
public native String charAt(int index);
public native int charCodeAt();
public native int charCodeAt(int index);
public native int codePointAt(int index);
public native String concat(Object... var_args);
public native boolean endsWith(String searchString, int position);
public native boolean endsWith(String searchString);
public native String fixed();
public native String fontcolor(String color);
public native String fontsize(int size);
public native boolean includes(String searchString, int position);
public native boolean includes(String searchString);
public native int indexOf(String searchValue, int fromIndex);
public native int indexOf(String searchValue);
public native String italics();
public native int lastIndexOf(String searchValue, int fromIndex);
public native int lastIndexOf(String searchValue);
public native String link(String hrefAttribute);
public native int localeCompare(
String compareString, JsString.LocaleCompareLocalesUnionType locales, JsObject options);
@JsOverlay
public final int localeCompare(
String compareString, JsString.LocaleCompareLocalesUnionType locales, Object options) {
return localeCompare(compareString, locales, Js.uncheckedCast(options));
}
public native int localeCompare(
String compareString, JsString.LocaleCompareLocalesUnionType locales);
@JsOverlay
public final int localeCompare(String compareString, String locales, JsObject options) {
return localeCompare(
compareString, Js.uncheckedCast(locales), options);
}
@JsOverlay
public final int localeCompare(String compareString, String[] locales, JsObject options) {
return localeCompare(
compareString, Js.uncheckedCast(locales), options);
}
@JsOverlay
public final int localeCompare(String compareString, String locales, Object options) {
return localeCompare(compareString, locales, Js.uncheckedCast(options));
}
@JsOverlay
public final int localeCompare(String compareString, String[] locales, Object options) {
return localeCompare(compareString, locales, Js.uncheckedCast(options));
}
@JsOverlay
public final int localeCompare(String compareString, String locales) {
return localeCompare(
compareString, Js.uncheckedCast(locales));
}
@JsOverlay
public final int localeCompare(String compareString, String[] locales) {
return localeCompare(
compareString, Js.uncheckedCast(locales));
}
public native int localeCompare(String compareString);
public native String[] match(Object regexp);
public native String normalize();
public native String normalize(String form);
public native String padEnd(int targetLength, String padString);
public native String padEnd(int targetLength);
public native String padStart(int targetLength, String padString);
public native String padStart(int targetLength);
public native String quote();
public native String repeat(int count);
@JsOverlay
public final String replace(JsRegExp pattern, JsString.ReplaceReplacementFn replacement) {
return replace(
Js.uncheckedCast(pattern),
Js.uncheckedCast(replacement));
}
@JsOverlay
public final String replace(JsRegExp pattern, JsString.ReplaceReplacementUnionType replacement) {
return replace(Js.uncheckedCast(pattern), replacement);
}
@JsOverlay
public final String replace(JsRegExp pattern, String replacement) {
return replace(
Js.uncheckedCast(pattern),
Js.uncheckedCast(replacement));
}
@JsOverlay
public final String replace(
JsString.ReplacePatternUnionType pattern, JsString.ReplaceReplacementFn replacement) {
return replace(pattern, Js.uncheckedCast(replacement));
}
public native String replace(
JsString.ReplacePatternUnionType pattern, JsString.ReplaceReplacementUnionType replacement);
@JsOverlay
public final String replace(JsString.ReplacePatternUnionType pattern, String replacement) {
return replace(pattern, Js.uncheckedCast(replacement));
}
@JsOverlay
public final String replace(String pattern, JsString.ReplaceReplacementFn replacement) {
return replace(
Js.uncheckedCast(pattern),
Js.uncheckedCast(replacement));
}
@JsOverlay
public final String replace(String pattern, JsString.ReplaceReplacementUnionType replacement) {
return replace(Js.uncheckedCast(pattern), replacement);
}
@JsOverlay
public final String replace(String pattern, String replacement) {
return replace(
Js.uncheckedCast(pattern),
Js.uncheckedCast(replacement));
}
@JsOverlay
public final int search(JsRegExp pattern) {
return search(Js.uncheckedCast(pattern));
}
public native int search(JsString.SearchPatternUnionType pattern);
@JsOverlay
public final int search(String pattern) {
return search(Js.uncheckedCast(pattern));
}
public native String slice(int begin, int end);
public native String slice(int begin);
public native String small();
public native String[] split();
public native String[] split(Object separator, int limit);
public native String[] split(Object separator);
public native boolean startsWith(String searchString, int position);
public native boolean startsWith(String searchString);
public native String strike();
public native String sub();
public native String substr(int start, int length);
public native String substr(int start);
public native String substring(int start, int end);
public native String substring(int start);
public native String sup();
public native String toLocaleLowerCase();
public native String toLocaleUpperCase();
public native String toLowerCase();
public native String toSource();
@JsMethod(name = "toString")
public native String toString_();
public native String toUpperCase();
public native String trim();
public native String trimLeft();
public native String trimRight();
public native String valueOf();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy