forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify the code of StringUtils to make it more graceful. (apache#2740
- Loading branch information
Showing
4 changed files
with
191 additions
and
45 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
dubbo-common/src/main/java/org/apache/dubbo/common/utils/ArrayUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.dubbo.common.utils; | ||
|
||
/** | ||
* Contains some methods to check array. | ||
*/ | ||
public final class ArrayUtils { | ||
|
||
private ArrayUtils() { | ||
} | ||
|
||
/** | ||
* <p>Checks if the array is null or empty. <p/> | ||
* | ||
* @param array th array to check | ||
* @return {@code true} if the array is null or empty. | ||
*/ | ||
public static boolean isEmpty(final Object[] array) { | ||
return array == null || array.length == 0; | ||
} | ||
|
||
/** | ||
* <p>Checks if the array is not null or empty. <p/> | ||
* | ||
* @param array th array to check | ||
* @return {@code true} if the array is not null or empty. | ||
*/ | ||
public static boolean isNotEmpty(final Object[] array) { | ||
return !isEmpty(array); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
dubbo-common/src/test/java/org/apache/dubbo/common/utils/ArrayUtilsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.dubbo.common.utils; | ||
|
||
import static junit.framework.TestCase.assertFalse; | ||
import static junit.framework.TestCase.assertTrue; | ||
|
||
import org.junit.Test; | ||
|
||
public class ArrayUtilsTest { | ||
|
||
@Test | ||
public void isEmpty() throws Exception { | ||
assertTrue(ArrayUtils.isEmpty(null)); | ||
assertTrue(ArrayUtils.isEmpty(new Object[0])); | ||
assertFalse(ArrayUtils.isEmpty(new Object[]{"abc"})); | ||
} | ||
|
||
@Test | ||
public void isNotEmpty() throws Exception { | ||
assertFalse(ArrayUtils.isNotEmpty(null)); | ||
assertFalse(ArrayUtils.isNotEmpty(new Object[0])); | ||
assertTrue(ArrayUtils.isNotEmpty(new Object[]{"abc"})); | ||
} | ||
|
||
} |
Oops, something went wrong.