forked from devonfw/IDEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/devonfw/IDEasy into feature/d…
…evonfw#139-feature-for-making-symlinks-relative
- Loading branch information
Showing
23 changed files
with
662 additions
and
24 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
19 changes: 19 additions & 0 deletions
19
cli/src/main/java/com/devonfw/tools/ide/version/BoundaryType.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,19 @@ | ||
package com.devonfw.tools.ide.version; | ||
|
||
/** | ||
* Enum representing the type of interval regarding its boundaries. | ||
*/ | ||
public enum BoundaryType { | ||
|
||
/** Closed interval - includes the specified values at the boundaries. */ | ||
CLOSED, | ||
|
||
/** Open interval - excludes the specified values at the boundaries. */ | ||
OPEN, | ||
|
||
/** Left open interval - excludes the lower bound but includes the upper bound. */ | ||
LEFT_OPEN, | ||
|
||
/** Right open interval - includes the lower bound but excludes the upper bound. */ | ||
RIGHT_OPEN | ||
} |
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
Oops, something went wrong.