2022-10-30 23:14:53 +01:00
|
|
|
package ᴶᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ;
|
2022-10-21 22:06:41 +02:00
|
|
|
|
2022-10-30 23:14:53 +01:00
|
|
|
import ᴶᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
2022-10-21 22:06:41 +02:00
|
|
|
|
2022-10-30 16:59:24 +01:00
|
|
|
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
2022-10-24 03:57:39 +02:00
|
|
|
public final class StringUnicode implements StringType<StringUnicode> {
|
2022-10-21 22:06:41 +02:00
|
|
|
|
2022-10-24 03:57:39 +02:00
|
|
|
private final String text;
|
2022-10-21 22:06:41 +02:00
|
|
|
|
2022-10-24 03:57:39 +02:00
|
|
|
public StringUnicode(String text) {
|
|
|
|
|
this.text = text;
|
2022-10-21 22:06:41 +02:00
|
|
|
}
|
|
|
|
|
|
2022-10-24 03:57:39 +02:00
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return text;
|
2022-10-21 22:06:41 +02:00
|
|
|
}
|
|
|
|
|
|
2022-10-24 03:57:39 +02:00
|
|
|
@Override
|
|
|
|
|
public StringUnicode wrapᴼᶠ(String str) {
|
2022-10-24 05:27:27 +02:00
|
|
|
return valueOf(str);
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-30 08:26:14 +01:00
|
|
|
public static StringUnicode valueOf(CharSequence str) {
|
|
|
|
|
return new StringUnicode(str.toString());
|
2022-10-21 22:06:41 +02:00
|
|
|
}
|
|
|
|
|
}
|