jakartaee / batch

The Jakarta Batch project produces the Batch Specification and API.
https://projects.eclipse.org/projects/ee4j.batch
Apache License 2.0
13 stars 17 forks source link

_ characters in some enum values in spec document #207 #208

Closed liweinan closed 8 months ago

liweinan commented 9 months ago

https://github.com/eclipse-ee4j/batch-api/issues/207

chengfang commented 9 months ago

There are other occurrences like:

  public enum BatchStatus
  {
      STARTING_, _STARTED_, _STOPPING_,
      _STOPPED_, _FAILED_, _COMPLETED_, _ABANDONED_
  }

You may want to search the whole repo, especially all enum types.

liweinan commented 9 months ago

@chengfang Okay I see. I'll search the whole repo and update this PR.

liweinan commented 8 months ago

@scottkurz Thanks for the suggestion!