D | AdServicesJobInfo.java | 25 public enum AdServicesJobInfo { enum 99 Arrays.stream(AdServicesJobInfo.values()) 102 AdServicesJobInfo::getJobId, 103 AdServicesJobInfo::getJobServiceName)); 106 private static final Map<Integer, AdServicesJobInfo> JOB_ID_TO_INFO_MAP = 107 Arrays.stream(AdServicesJobInfo.values()) 108 .collect(Collectors.toMap(AdServicesJobInfo::getJobId, Function.identity())); 110 AdServicesJobInfo(String jobServiceName, int jobId) { in AdServicesJobInfo() method in AdServicesJobInfo 133 public static Map<Integer, AdServicesJobInfo> getJobIdToJobInfoMap() { in getJobIdToJobInfoMap()
|