scrooge-generator/src/main/resources/androidgen/enum.mustache [26:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  /**
   * Find a the enum type by its integer value, as defined in the Thrift IDL.
   * @return null if the value is not found.
   */
  public static {{name}} findByValue(int value) {
    switch (value) {
    {{#constants}}
      case {{value}}:
        return {{name}};
    {{/constants}}
      default:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scrooge-generator/src/main/resources/apachejavagen/enum.mustache [45:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  /**
   * Find a the enum type by its integer value, as defined in the Thrift IDL.
   * @return null if the value is not found.
   */
  public static {{name}} findByValue(int value) {
    switch (value) {
    {{#constants}}
      case {{value}}:
        return {{name}};
    {{/constants}}
      default:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



