Define a fixed-size list in Java February 21, 2023 by Tarik This should do it if memory serves: List<MyType> fixed = Arrays.asList(new MyType[100]);