Home | History | Annotate | Download | only in impl

Lines Matching refs:id

51   private final int id;
55 * @param id the integer identiifer for this state, guaranteed to be unique
57 private InternalState(String name, int id) {
59 Preconditions.checkArgument(id >= FIRST_ID);
60 Preconditions.checkArgument(id <= MAX_ID);
62 this.id = id;
70 id = 0;
81 * @return {@code int} id of that state.
84 return id;
93 return String.format("InternalState: Name: %s; Id: %d", name, id);