• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

common-workflow-language / cwljava / #360

16 Jun 2025 03:14AM CUT coverage: 60.167%. Remained the same
#360

push

github

kinow
Bump com.fasterxml.jackson.core:jackson-databind from 2.19.0 to 2.19.1

Bumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.19.0 to 2.19.1.
- [Commits](https://github.com/FasterXML/jackson/commits)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-version: 2.19.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

7347 of 12211 relevant lines covered (60.17%)

0.6 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/org/w3id/cwl/cwl1_1/Directory_class.java
1
// Copyright Common Workflow Language project contributors
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15
package org.w3id.cwl.cwl1_1;
16

17
import org.w3id.cwl.cwl1_1.utils.ValidationException;
18

19
public enum Directory_class {
×
20
  DIRECTORY("Directory");
×
21

22
  private static String[] symbols = new String[] {"Directory"};
×
23
  private String docVal;
24

25
  private Directory_class(final String docVal) {
×
26
    this.docVal = docVal;
×
27
  }
×
28

29
  public static Directory_class fromDocumentVal(final String docVal) {
30
    for(final Directory_class val : Directory_class.values()) {
×
31
      if(val.docVal.equals(docVal)) {
×
32
        return val;
×
33
      }
34
    }
35
    throw new ValidationException(String.format("Expected one of %s", Directory_class.symbols, docVal));
×
36
  }
37
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc