If you want to create an immutable array, no, you cannot. All arrays in Java are mutable.
If you just want to predefine an array in your class, you can do this:
private static final int[] MY_ARRAY = {10, 20, 30, 40, 50};
MY_ARRAY
5, MY_ARRAY[0]
- 10
. , MY_ARRAY
, , . , public
protected
.