| 1234567891011121314151617 |
- package com.usky.ai;
- import com.usky.ai.dto.AlgScheduleFetchResponseDTO;
- import java.util.List;
- public class AITestApplication {
- public static void main(String[] args) {
- String value = "100000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
- AlgScheduleFetchResponseDTO.Schedule schedule = new AlgScheduleFetchResponseDTO.Schedule();
- schedule.setValue(value);
- List<String> timePeriods = schedule.getReadableTimePeriods();
- for (String period : timePeriods) {
- System.out.println(period);
- }
- }
- }
|