일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- Elasticsearch
- sort
- Java
- zip 파일 암호화
- analyzer test
- query
- token filter test
- springboot
- licence delete curl
- Mac
- zip 암호화
- aggregation
- Test
- API
- TensorFlow
- MySQL
- plugin
- 차트
- matplotlib
- 파이썬
- Python
- flask
- License
- Kafka
- ELASTIC
- high level client
- license delete
- aggs
- 900gle
- docker
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