pl.edu.icm.unity.stdext.attr.DateAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-std-plugins Show documentation
Show all versions of unity-server-std-plugins Show documentation
Standard plugins which are distributed with the system:
attribute syntaxes, identity types, credentials
/*
* Copyright (c) 2017 Bixbit - Krzysztof Benedyczak All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.stdext.attr;
import java.time.LocalDate;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import pl.edu.icm.unity.types.basic.Attribute;
/**
* Helper class allowing to create date attributes easily.
*
* @author P.Piernik
*
*/
public class DateAttribute
{
public static Attribute of(String name, String groupPath, LocalDate... values)
{
return new Attribute(name, DateAttributeSyntax.ID, groupPath, convert(values));
}
private static List convert(LocalDate... values)
{
DateAttributeSyntax syntax = new DateAttributeSyntax();
return Stream.of(values).map(v -> syntax.convertToString(v))
.collect(Collectors.toList());
}
}