Java keyword list      abstract  continue  for  new  switch    assert  default  goto *  package  synchronized    boolean  do  if  private  this    break  double  implements  protected  throw    byte  else  import  public  throws    case  enum  instanceof  return  transient    catch  extends  int  short  try    char  final  interface  static  void    class  finally  long  strictfp  volatile    const *  float  native  super  while     Keyword marked with an asterisk (*) are keywords that, although valid, are not used by programmers.        This is the last chapter of the Java Keyword series. This is probably the keyword I have used the least. In my 20 year career as a software developer, I have used this keyword once, and that was to make some addition to legacy code.         The keyword native  is a method modifier . Basically, it is a keyword that can only be applied to methods. According to the Java Language Specification (JLS),    A method that is native is implemented i...
          A question was posted on LinkedIn which caused me to get out of my shell and post again.  After all, I know all too well how frustrating it is to try to get something to work and not being able to find any meaningful examples on the web (YES... we have all grown fond of Google to find examples and get lazy researching topics, but that's life...)   I decided to post some simple examples on how to create MS Word documents from scratch.  This is all based on my postings on LinkedIn on this very topic.  To read the thread, you may go  here .    First question :  What is Apache POI?   In simple terms, this is an free, open-source software (FOSS) that provide an application interface for Microsoft documents.  This product was created by the Apache Foundation POI team.  My examples are based on version 3.8.  The latest version is 3.9 and there is a beta 3.10 available.     Second question :  What kind of Microsoft documents?   Simply, MS Office documents (i.e. Word, Excel, Power...