File tree 4 files changed +24
-22
lines changed
4 files changed +24
-22
lines changed Original file line number Diff line number Diff line change @@ -237,17 +237,18 @@ public static String getName(final URI uri) {
237
237
}
238
238
239
239
/**
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 .
243
243
*
244
244
* @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 .
247
247
* @throws NullPointerException If {@code uri} is null.
248
+ * @see StringPaths#getNameWithoutExtension(String)
248
249
*/
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 ());
251
252
}
252
253
253
254
/**
Original file line number Diff line number Diff line change @@ -548,17 +548,18 @@ public static String getName(final URL url) {
548
548
}
549
549
550
550
/**
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 .
554
554
*
555
555
* @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 .
558
558
* @throws NullPointerException If {@code url} is null.
559
+ * @see StringPaths#getNameWithoutExtension(String)
559
560
*/
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 ());
562
563
}
563
564
564
565
/**
Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ public void testGetName() throws Exception {
64
64
65
65
@ Test
66
66
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" )));
71
71
}
72
72
73
73
@ Test
Original file line number Diff line number Diff line change @@ -114,10 +114,10 @@ public void testGetName() throws Exception {
114
114
@ Test
115
115
public void testGetSimpleName () throws Exception {
116
116
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" )));
121
121
}
122
122
123
123
@ Test
You can’t perform that action at this time.
0 commit comments