/**
   * Find the enum type by its value, with the default value.
   *
   * @param value The enum value.
   * @param defaultValue The default return value if the enum value does not exists.
   * @return The enum type, or the default value if this enum value does not exists.
   * @since 1.0
   */
  public static WdDefaultTableBehavior find(int value, WdDefaultTableBehavior defaultValue) {
    WdDefaultTableBehavior result = WdDefaultTableBehavior.find(value);

    if (result == null) {
      result = defaultValue;
    }

    return result;
  }