27 lines
653 B
Java
27 lines
653 B
Java
package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᐪᓫᕽᐪ;
|
|
|
|
import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
|
|
|
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
|
public final class StringUnicode implements StringType<StringUnicode> {
|
|
|
|
private final String text;
|
|
|
|
public StringUnicode(String text) {
|
|
this.text = text;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return text;
|
|
}
|
|
|
|
@Override
|
|
public StringUnicode wrapᴼᶠ(String str) {
|
|
return valueOf(str);
|
|
}
|
|
|
|
public static StringUnicode valueOf(CharSequence str) {
|
|
return new StringUnicode(str.toString());
|
|
}
|
|
}
|