Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wj-datacenter-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jinan
wj-datacenter-platform
Commits
a572867a
Commit
a572867a
authored
Jun 28, 2024
by
duanruiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] review-常量类
parent
b3be9964
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
Constants.java
.../src/main/java/net/wanji/datacenter/common/Constants.java
+5
-1
No files found.
wj-datacenter-service/src/main/java/net/wanji/datacenter/common/Constants.java
View file @
a572867a
package
net
.
wanji
.
datacenter
.
common
;
package
net
.
wanji
.
datacenter
.
common
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.Collections
;
import
java.util.List
;
import
java.util.List
;
/**
/**
...
@@ -10,9 +11,12 @@ import java.util.List;
...
@@ -10,9 +11,12 @@ import java.util.List;
public
class
Constants
{
public
class
Constants
{
public
static
final
String
UNDERLINE
=
"_"
;
public
static
final
String
UNDERLINE
=
"_"
;
// 横向方向列表
// 横向方向列表
public
static
final
List
<
Integer
>
X_DIR_LIST
=
Arrays
.
asList
(
2
,
3
,
6
,
7
);
public
static
final
List
<
Integer
>
X_DIR_LIST
=
Collections
.
unmodifiableList
(
Arrays
.
asList
(
2
,
3
,
6
,
7
)
);
public
static
final
String
LANE_SNAPSHOT_DATA_ES_INDEX
=
"datacenter_lane_snapshot_data"
;
public
static
final
String
LANE_SNAPSHOT_DATA_ES_INDEX
=
"datacenter_lane_snapshot_data"
;
public
static
final
String
CROSS_FREE_FLOW_SPEED_KEY
=
"crossFreeFlowSpeed"
;
public
static
final
String
CROSS_FREE_FLOW_SPEED_KEY
=
"crossFreeFlowSpeed"
;
public
static
final
String
CROSS_FREE_FLOW_SPEED_TOPIC
=
"cross_free_flow_speed"
;
public
static
final
String
CROSS_FREE_FLOW_SPEED_TOPIC
=
"cross_free_flow_speed"
;
private
Constants
()
{
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment