Moved str into text package
This commit is contained in:
parent
9dcb353fd5
commit
a366c75602
40 changed files with 67 additions and 62 deletions
|
|
@ -0,0 +1,27 @@
|
|||
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());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue