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

loveapple / web-crawler / 36

10 Jul 2025 11:46AM UTC coverage: 49.231% (-47.6%) from 96.875%
36

push

circleci

Chunli Hao
coding bulkInsert

1 of 33 new or added lines in 2 files covered. (3.03%)

32 of 65 relevant lines covered (49.23%)

0.49 hits per line

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

0.0
/src/main/java/com/happinesea/webcrawler/Const.java
1
package com.happinesea.webcrawler;
2

3
import lombok.Getter;
4

NEW
5
public class Const {
×
NEW
6
        @Getter
×
7
        public static enum ProcessStatus{
NEW
8
                NONE("1"),
×
NEW
9
                SUCCESS("0"),
×
NEW
10
                FAIL("9"),
×
NEW
11
                PROCESSING("2");
×
12

13
                private final String value;
NEW
14
                private ProcessStatus(String value) {
×
NEW
15
                        this.value = value;
×
NEW
16
                }
×
17
        }
NEW
18
        @Getter
×
19
        public static enum DeleteFlg{
NEW
20
                ON("1"),
×
NEW
21
                OFF("0");
×
22

23
                private final String value;
NEW
24
                private DeleteFlg(String value) {
×
NEW
25
                        this.value = value;
×
NEW
26
                }
×
27
        }
NEW
28
        @Getter
×
29
        public static enum ContentsType{
NEW
30
                HTML("1"),
×
NEW
31
                Wordpress("2");
×
32

33
                private final String value;
NEW
34
                private ContentsType(String value) {
×
NEW
35
                        this.value = value;
×
NEW
36
                }
×
37
        }
38
}
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