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

io.virtdata.libbasics.shared.from_long.to_time_types.joda.ToMillisAtStartOfMinuteAutoDocsInfo Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
// This file is auto-generated.
package io.virtdata.libbasics.shared.from_long.to_time_types.joda;

import io.virtdata.annotations.Category;
import io.virtdata.annotations.Service;
import io.virtdata.processors.DocCtorData;
import io.virtdata.processors.DocForFuncCtor;
import io.virtdata.processors.DocFuncData;
import java.lang.String;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;

@Service(DocFuncData.class)
public class ToMillisAtStartOfMinuteAutoDocsInfo implements DocFuncData {
  public String getClassName() {
    return "ToMillisAtStartOfMinute";
  }

  public String getPackageName() {
    return "io.virtdata.libbasics.shared.from_long.to_time_types.joda";
  }

  public String getClassJavadoc() {
    return "Return the epoch milliseconds at the start of the minute for the given\n"
            + "epoch milliseconds.\n";
  }

  public String getInType() {
    return "long";
  }

  public String getOutType() {
    return "long";
  }

  public Category[] getCategories() {
    return new Category[] { Category.datetime };
  }

  public List getCtors() {
    return new ArrayList() {{
          add(new DocForFuncCtor("ToMillisAtStartOfMinute", "", 
            new LinkedHashMap() {{
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("ToMillisAtStartOfMinute()");
                add("return millisecond epoch time of the start of the minute of the provided millisecond epoch time, assuming UTC");
              }});
            }}
          ));
          add(new DocForFuncCtor("ToMillisAtStartOfMinute", "", 
            new LinkedHashMap() {{
              put("timezoneId","java.lang.String");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("ToMillisAtStartOfMinute('America/Chicago')");
                add("return millisecond epoch time of the start of the minute of the provided millisecond epoch time, using timezone America/Chicago");
              }});
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy