All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.sitebricks.conversion.SingletonListConverter Maven / Gradle / Ivy

The newest version!
package com.google.sitebricks.conversion;

import java.util.Arrays;
import java.util.List;

public class SingletonListConverter implements Converter> {

  @Override
  public List to(Object source) {
    return Arrays.asList(source);
  }

  @Override
  public Object from(List target) {
    return target.get(0);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy