Is bookTokens thread- safe in below code ? I am not pretty sure if values of String array can be read in thread-safe manner ?
public Class Myclass{
private static final String[] bookTokens = { "amazon", "manning", "book"};
public static void methodOne(){
//read values from bookTokens
}
public static void methodTwo(){
//read values from bookTokens
}
}