Skip to content

Commit bf91ff2

Browse files
committed
Change getShortName to getNameWithoutExtension, re #15
1 parent 8b969dd commit bf91ff2

File tree

4 files changed

+24
-22
lines changed

4 files changed

+24
-22
lines changed

src/main/java/org/libj/net/URIs.java

+8-7
Original file line numberDiff line numberDiff line change
@@ -237,17 +237,18 @@ public static String getName(final URI uri) {
237237
}
238238

239239
/**
240-
* Returns the simple name of the file or directory denoted by the specified {@link URI}. This is just the last name in the name
241-
* sequence of {@code uri}, with its dot-extension removed if present. If the name sequence of {@code uri} is empty, then the empty
242-
* string is returned.
240+
* Returns the last name in the {@code '/'}-delimited sequence of path segments of the given {@code uri} with its dot-prefixed
241+
* extension removed. The unmodified {@linkplain URIs#getName(URI) name of the uri} is returned if no dot-prefixed extension is
242+
* present.
243243
*
244244
* @param uri The {@link URI}.
245-
* @return The simple name of the file or directory denoted by the specified {@link URI}, or the empty string if the name sequence
246-
* of {@code uri} is empty.
245+
* @return The last name in the {@code '/'}-delimited sequence of path segments of the given {@code uri} with its dot-prefixed
246+
* extension removed.
247247
* @throws NullPointerException If {@code uri} is null.
248+
* @see StringPaths#getNameWithoutExtension(String)
248249
*/
249-
public static String getSimpleName(final URI uri) {
250-
return StringPaths.getSimpleName(uri.toString());
250+
public static String getNameWithoutExtension(final URI uri) {
251+
return StringPaths.getNameWithoutExtension(uri.toString());
251252
}
252253

253254
/**

src/main/java/org/libj/net/URLs.java

+8-7
Original file line numberDiff line numberDiff line change
@@ -548,17 +548,18 @@ public static String getName(final URL url) {
548548
}
549549

550550
/**
551-
* Returns the simple name of the file or directory denoted by the specified {@link URL}. This is just the last name in the name
552-
* sequence of {@code url}, with its dot-extension removed if present. If the name sequence of {@code url} is empty, then the empty
553-
* string is returned.
551+
* Returns the last name in the {@code '/'}-delimited sequence of path segments of the given {@code url} with its dot-prefixed
552+
* extension removed. The unmodified {@linkplain URLs#getName(URL) name of the url} is returned if no dot-prefixed extension is
553+
* present.
554554
*
555555
* @param url The {@link URL}.
556-
* @return The simple name of the file or directory denoted by the specified {@link URL}, or the empty string if the name sequence
557-
* of {@code url} is empty.
556+
* @return The last name in the {@code '/'}-delimited sequence of path segments of the given {@code url} with its dot-prefixed
557+
* extension removed.
558558
* @throws NullPointerException If {@code url} is null.
559+
* @see StringPaths#getNameWithoutExtension(String)
559560
*/
560-
public static String getSimpleName(final URL url) {
561-
return StringPaths.getSimpleName(url.toString());
561+
public static String getNameWithoutExtension(final URL url) {
562+
return StringPaths.getNameWithoutExtension(url.toString());
562563
}
563564

564565
/**

src/test/java/org/libj/net/URIsTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ public void testGetName() throws Exception {
6464

6565
@Test
6666
public void testGetSimpleName() throws Exception {
67-
assertEquals("share", URIs.getSimpleName(new URI("file:///usr/share/../share")));
68-
assertEquals("lib", URIs.getSimpleName(new URI("file:///usr/share/../share/../lib")));
69-
assertEquals("var", URIs.getSimpleName(new URI("file:///usr/share/../share/../lib/../../var")));
70-
assertEquals("resolv", URIs.getSimpleName(new URI("file:///etc/resolv.conf")));
67+
assertEquals("share", URIs.getNameWithoutExtension(new URI("file:///usr/share/../share")));
68+
assertEquals("lib", URIs.getNameWithoutExtension(new URI("file:///usr/share/../share/../lib")));
69+
assertEquals("var", URIs.getNameWithoutExtension(new URI("file:///usr/share/../share/../lib/../../var")));
70+
assertEquals("resolv", URIs.getNameWithoutExtension(new URI("file:///etc/resolv.conf")));
7171
}
7272

7373
@Test

src/test/java/org/libj/net/URLsTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ public void testGetName() throws Exception {
114114
@Test
115115
public void testGetSimpleName() throws Exception {
116116
assertNull(URLs.canonicalize(null));
117-
assertEquals("share", URLs.getSimpleName(new URL("file:///usr/share/../share")));
118-
assertEquals("lib", URLs.getSimpleName(new URL("file:///usr/share/../share/../lib")));
119-
assertEquals("var", URLs.getSimpleName(new URL("file:///usr/share/../share/../lib/../../var")));
120-
assertEquals("resolv", URLs.getSimpleName(new URL("file:///etc/resolv.conf")));
117+
assertEquals("share", URLs.getNameWithoutExtension(new URL("file:///usr/share/../share")));
118+
assertEquals("lib", URLs.getNameWithoutExtension(new URL("file:///usr/share/../share/../lib")));
119+
assertEquals("var", URLs.getNameWithoutExtension(new URL("file:///usr/share/../share/../lib/../../var")));
120+
assertEquals("resolv", URLs.getNameWithoutExtension(new URL("file:///etc/resolv.conf")));
121121
}
122122

123123
@Test

0 commit comments

Comments
 (0)