forked from openhab/openhab-addons
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ecobee] Remove org.apache.commons (openhab#14403)
Signed-off-by: lsiepel <leosiepel@gmail.com>
- Loading branch information
1 parent
0d49a5f
commit 287c57d
Showing
6 changed files
with
88 additions
and
8 deletions.
There are no files selected for viewing
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
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
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
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
37 changes: 37 additions & 0 deletions
37
...binding.ecobee/src/main/java/org/openhab/binding/ecobee/internal/util/ExceptionUtils.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,37 @@ | ||
/** | ||
* Copyright (c) 2010-2023 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.binding.ecobee.internal.util; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.eclipse.jdt.annotation.NonNullByDefault; | ||
import org.eclipse.jdt.annotation.Nullable; | ||
|
||
/** | ||
* The {@link ExceptionUtils} class defines static Exception related methods | ||
* | ||
* @author Leo Siepel - Initial contribution | ||
*/ | ||
@NonNullByDefault | ||
public class ExceptionUtils { | ||
|
||
public static @Nullable Throwable getRootThrowable(@Nullable Throwable throwable) { | ||
List<Throwable> list = new ArrayList<>(); | ||
while (throwable != null && !list.contains(throwable)) { | ||
list.add(throwable); | ||
throwable = throwable.getCause(); | ||
} | ||
return throwable; | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...ab.binding.ecobee/src/main/java/org/openhab/binding/ecobee/internal/util/StringUtils.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,43 @@ | ||
/** | ||
* Copyright (c) 2010-2023 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.binding.ecobee.internal.util; | ||
|
||
import org.eclipse.jdt.annotation.NonNullByDefault; | ||
import org.eclipse.jdt.annotation.Nullable; | ||
|
||
/** | ||
* The {@link StringUtils} class defines static string related methods | ||
* | ||
* @author Leo Siepel - Initial contribution | ||
*/ | ||
@NonNullByDefault | ||
public class StringUtils { | ||
|
||
public static String capitalizeWords(@Nullable String input) { | ||
String output = ""; | ||
if (input != null) { | ||
String[] splitted = input.split("\\s+"); | ||
String[] processed = new String[splitted.length]; | ||
for (int wordIndex = 0; wordIndex < splitted.length; wordIndex++) { | ||
if (splitted[wordIndex].length() > 1) { | ||
processed[wordIndex] = splitted[wordIndex].substring(0, 1).toUpperCase() | ||
+ splitted[wordIndex].substring(1); | ||
} else { | ||
processed[wordIndex] = splitted[wordIndex].toUpperCase(); | ||
} | ||
} | ||
output = String.join(" ", processed); | ||
} | ||
return output; | ||
} | ||
} |