公告板
版本库
filestore
活动
搜索
登录
iplatform_group
/
walker-dependencies
iplatform平台基础类库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
2.7.18
shikeying
2024-01-11
3b67e947e36133e2a40eb2737b15ea375e157ea0
[iplatform_group/walker-dependencies.git]
/
walker-etaa-group
/
walker-etaa-core
/
src
/
main
/
java
/
com
/
walker
/
etaa
/
ExtractStrategy.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.walker.etaa;
/**
* 抽取策略。
* @date 2023-03-08
*/
public enum ExtractStrategy {
/**
* 平均分布
*/
Average,
/**
* 随机
*/
Random;
}