/**
  * Creates a new {@link Fields} instance from the given field name and target reference.
  *
  * @param name must not be {@literal null} or empty.
  * @param target must not be {@literal null} or empty.
  * @return
  */
 public static Fields bind(String name, String target) {
   return Fields.from(field(name, target));
 }