일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- query
- TensorFlow
- ELASTIC
- Python
- Elasticsearch
- Java
- API
- MySQL
- 900gle
- analyzer test
- zip 암호화
- springboot
- 차트
- 파이썬
- zip 파일 암호화
- token filter test
- Test
- plugin
- Mac
- aggs
- aggregation
- Kafka
- matplotlib
- docker
- flask
- License
- sort
- license delete
- high level client
- licence delete curl
Archives
- Today
- Total
목록JAVA/study (1)
개발잡부
[java] java stream
//스트림 생성 //컬렉션 List list = Arrays.asList("a", "b", "c"); Stream stream = list.stream(); //배열 String[] array = new String[]{"a","b","c"}; Stream stream1 = Arrays.stream(array); Stream stream2 = Arrays.stream(array, 1, 3); //정적메소드 Arrays.stream() 에 인자를 입력 //인덱스 1 포함, 3제외 //빌더 Stream stream3 = Stream.builder().add("a").add("b").build(); //Generator Stream stream4 = Stream.generate(()->"a").limit(3)..
JAVA/study
2022. 5. 21. 13:36