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

smartsheet / smartsheet-java-sdk / #42

24 Aug 2023 06:04PM UTC coverage: 50.442% (-0.02%) from 50.458%
#42

push

github-actions

web-flow
Fix Checkstyle Violations in api/model/enums Classes (#54)

This will fix ~250 violations

41 of 41 new or added lines in 14 files covered. (100.0%)

3421 of 6782 relevant lines covered (50.44%)

0.5 hits per line

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

0.0
/src/main/java/com/smartsheet/api/models/enums/WorkspaceRemapExclusion.java
1
package com.smartsheet.api.models.enums;
2

3
/*
4
 * #[license]
5
 * Smartsheet Java SDK
6
 * %%
7
 * Copyright (C) 2023 Smartsheet
8
 * %%
9
 * Licensed under the Apache License, Version 2.0 (the "License");
10
 * you may not use this file except in compliance with the License.
11
 * You may obtain a copy of the License at
12
 *
13
 *      http://www.apache.org/licenses/LICENSE-2.0
14
 *
15
 * Unless required by applicable law or agreed to in writing, software
16
 * distributed under the License is distributed on an "AS IS" BASIS,
17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
 * See the License for the specific language governing permissions and
19
 * limitations under the License.
20
 * %[license]
21
 */
22

23
/**
24
 * Represents specific objects should be excluded in some responses.
25
 */
26
public enum WorkspaceRemapExclusion {
×
27
    CELLLINKS("cellLinks"),
×
28
    REPORTS("reports"),
×
29
    SHEETHYPERLINKS("sheetHyperlinks"),
×
30
    SIGHTS("sights"),
×
31
    ;
32

33
    String inclusion;
34

35
    WorkspaceRemapExclusion(String inclusion) {
×
36
        this.inclusion = inclusion;
×
37
    }
×
38

39
    @Override
40
    public String toString() {
41
        return inclusion;
×
42
    }
43
}
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

© 2026 Coveralls, Inc