Home | History | Annotate | Download | only in fat

Lines Matching refs:ShortName

29 final class ShortName {
42 public final static ShortName DOT = new ShortName(".", ""); // NOI18N
47 public final static ShortName DOT_DOT = new ShortName("..", ""); // NOI18N
52 private ShortName(String nameExt) {
71 ShortName(String name, String ext) {
75 ShortName(char[] name) {
79 public ShortName(char[] nameArr, char[] extArr) {
102 * @return the {@code ShortName}'s checksum
118 * Parses the specified string into a {@code ShortName}.
120 * @param name the name+extension of the {@code ShortName} to get
121 * @return the {@code ShortName} representing the specified name
123 * into a {@code ShortName}
126 public static ShortName get(String name) throws IllegalArgumentException {
132 return new ShortName(name);
136 * Tests if the specified string can be converted to a {@code ShortName}.
145 ShortName.get(nameExt);
152 public static ShortName parse(byte[] data) {
164 return new ShortName(nameArr, extArr);
216 if (!(obj instanceof ShortName)) {
220 final ShortName other = (ShortName) obj;