repo stringlengths 7 58 | path stringlengths 12 218 | func_name stringlengths 3 140 | original_string stringlengths 73 34.1k | language stringclasses 1
value | code stringlengths 73 34.1k | code_tokens list | docstring stringlengths 3 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 105 339 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/mail/MailAccountManager.java | MailAccountManager.releaseMailAccountForThread | public void releaseMailAccountForThread(final String accountReservationKey) {
lock.lock();
try {
MailAccount mailAccount = lookupUsedMailAccountForCurrentThread(accountReservationKey);
releaseMailAccountForThread(mailAccount);
} finally {
lock.unlock();
}
} | java | public void releaseMailAccountForThread(final String accountReservationKey) {
lock.lock();
try {
MailAccount mailAccount = lookupUsedMailAccountForCurrentThread(accountReservationKey);
releaseMailAccountForThread(mailAccount);
} finally {
lock.unlock();
}
} | [
"public",
"void",
"releaseMailAccountForThread",
"(",
"final",
"String",
"accountReservationKey",
")",
"{",
"lock",
".",
"lock",
"(",
")",
";",
"try",
"{",
"MailAccount",
"mailAccount",
"=",
"lookupUsedMailAccountForCurrentThread",
"(",
"accountReservationKey",
")",
"... | Releases the mail account reserved under the specified reservation key for the current thread
so it can be reused by another threads. Threads blocking on an attempt to reserved an account
are notified.
@param accountReservationKey
the reservation key | [
"Releases",
"the",
"mail",
"account",
"reserved",
"under",
"the",
"specified",
"reservation",
"key",
"for",
"the",
"current",
"thread",
"so",
"it",
"can",
"be",
"reused",
"by",
"another",
"threads",
".",
"Threads",
"blocking",
"on",
"an",
"attempt",
"to",
"r... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/mail/MailAccountManager.java#L412-L420 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/ProductSortDefinitionUrl.java | ProductSortDefinitionUrl.addProductSortDefinitionUrl | public static MozuUrl addProductSortDefinitionUrl(String responseFields, Boolean useProvidedId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/productsortdefinitions/?useProvidedId={useProvidedId}&responseFields={responseFields}");
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("useProvidedId", useProvidedId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl addProductSortDefinitionUrl(String responseFields, Boolean useProvidedId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/productsortdefinitions/?useProvidedId={useProvidedId}&responseFields={responseFields}");
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("useProvidedId", useProvidedId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"addProductSortDefinitionUrl",
"(",
"String",
"responseFields",
",",
"Boolean",
"useProvidedId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/productsortdefinitions/?useProvidedId={useProvide... | Get Resource Url for AddProductSortDefinition
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param useProvidedId If true, the provided Id value will be used as the ProductSortDefinitionId. If omitted or false, the system will generate a ProductSortDefinitionId
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"AddProductSortDefinition"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/ProductSortDefinitionUrl.java#L56-L62 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/ProductSortDefinitionUrl.java | ProductSortDefinitionUrl.updateProductSortDefinitionUrl | public static MozuUrl updateProductSortDefinitionUrl(Integer productSortDefinitionId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/productsortdefinitions/{productSortDefinitionId}?responseFields={responseFields}");
formatter.formatUrl("productSortDefinitionId", productSortDefinitionId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl updateProductSortDefinitionUrl(Integer productSortDefinitionId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/productsortdefinitions/{productSortDefinitionId}?responseFields={responseFields}");
formatter.formatUrl("productSortDefinitionId", productSortDefinitionId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"updateProductSortDefinitionUrl",
"(",
"Integer",
"productSortDefinitionId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/productsortdefinitions/{productSortD... | Get Resource Url for UpdateProductSortDefinition
@param productSortDefinitionId Unique identifier of the product sort definition.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"UpdateProductSortDefinition"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/ProductSortDefinitionUrl.java#L70-L76 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/ProductSortDefinitionUrl.java | ProductSortDefinitionUrl.deleteProductSortDefinitionUrl | public static MozuUrl deleteProductSortDefinitionUrl(Integer productSortDefinitionId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/productsortdefinitions/{productSortDefinitionId}");
formatter.formatUrl("productSortDefinitionId", productSortDefinitionId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteProductSortDefinitionUrl(Integer productSortDefinitionId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/productsortdefinitions/{productSortDefinitionId}");
formatter.formatUrl("productSortDefinitionId", productSortDefinitionId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteProductSortDefinitionUrl",
"(",
"Integer",
"productSortDefinitionId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/productsortdefinitions/{productSortDefinitionId}\"",
")",
";",
"forma... | Get Resource Url for DeleteProductSortDefinition
@param productSortDefinitionId Unique identifier of the product sort definition.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteProductSortDefinition"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/ProductSortDefinitionUrl.java#L83-L88 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Sum.java | Sum.hasNextCase | @Override
public boolean hasNextCase() {
for (ConstraintWrap wrap : summands) {
if (wrap.constraint.hasNextCase()) {
return true;
}
}
return false;
} | java | @Override
public boolean hasNextCase() {
for (ConstraintWrap wrap : summands) {
if (wrap.constraint.hasNextCase()) {
return true;
}
}
return false;
} | [
"@",
"Override",
"public",
"boolean",
"hasNextCase",
"(",
")",
"{",
"for",
"(",
"ConstraintWrap",
"wrap",
":",
"summands",
")",
"{",
"if",
"(",
"wrap",
".",
"constraint",
".",
"hasNextCase",
"(",
")",
")",
"{",
"return",
"true",
";",
"}",
"}",
"return"... | Returns true if one of the sub-constraints still contains mandatory cases
@return true if at least on of the sub-constraints contains at least one mandatory case | [
"Returns",
"true",
"if",
"one",
"of",
"the",
"sub",
"-",
"constraints",
"still",
"contains",
"mandatory",
"cases"
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Sum.java#L134-L142 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/events/EventManager.java | EventManager.registerHandler | public synchronized void registerHandler(Object handler) {
boolean validClass = false;
if (handler==null) {
throw new IllegalArgumentException("Null handler class");
}
// Get the implemented interfaces. This gets only the
// directly implemented interfaces
Class<?> clazz = handler.getClass();
Class<?> interfaces[] = clazz.getInterfaces();
for (int i=0; i<interfaces.length; i++) {
String iName = interfaces[i].getSimpleName();
// verify the interface is for an event interface
if (iName.contains(EVENT_INTERFACE_SUFFIX)) {
validClass = true;
String eventCategory = iName.substring(0, iName.indexOf(EVENT_INTERFACE_SUFFIX)).toLowerCase();
// see if a handler has been registered for the interface type
if (eventHandlers.get(eventCategory)==null) {
eventHandlers.put(eventCategory, handler);
} else {
throw new ApiException("Handler already registered for event type " + iName);
}
}
}
if (!validClass) {
throw new ApiException("Class is invalid, it does not implement any event interfaces: " + clazz.getName());
}
} | java | public synchronized void registerHandler(Object handler) {
boolean validClass = false;
if (handler==null) {
throw new IllegalArgumentException("Null handler class");
}
// Get the implemented interfaces. This gets only the
// directly implemented interfaces
Class<?> clazz = handler.getClass();
Class<?> interfaces[] = clazz.getInterfaces();
for (int i=0; i<interfaces.length; i++) {
String iName = interfaces[i].getSimpleName();
// verify the interface is for an event interface
if (iName.contains(EVENT_INTERFACE_SUFFIX)) {
validClass = true;
String eventCategory = iName.substring(0, iName.indexOf(EVENT_INTERFACE_SUFFIX)).toLowerCase();
// see if a handler has been registered for the interface type
if (eventHandlers.get(eventCategory)==null) {
eventHandlers.put(eventCategory, handler);
} else {
throw new ApiException("Handler already registered for event type " + iName);
}
}
}
if (!validClass) {
throw new ApiException("Class is invalid, it does not implement any event interfaces: " + clazz.getName());
}
} | [
"public",
"synchronized",
"void",
"registerHandler",
"(",
"Object",
"handler",
")",
"{",
"boolean",
"validClass",
"=",
"false",
";",
"if",
"(",
"handler",
"==",
"null",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"Null handler class\"",
")",
";"... | Register an event handler. The registration looks at the interfaces
that the handler implements. An entry is created in the event handler
map for each event interface that is implemented.
Event interfaces are named in the form [Category]Event (e.g. ProductEvent)
@param handler handler class | [
"Register",
"an",
"event",
"handler",
".",
"The",
"registration",
"looks",
"at",
"the",
"interfaces",
"that",
"the",
"handler",
"implements",
".",
"An",
"entry",
"is",
"created",
"in",
"the",
"event",
"handler",
"map",
"for",
"each",
"event",
"interface",
"t... | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/events/EventManager.java#L53-L85 | train |
thomasjungblut/tjungblut-math | src/de/jungblut/math/sparse/OrderedIntDoubleMapping.java | OrderedIntDoubleMapping.merge | public void merge(OrderedIntDoubleMapping updates, DoubleDoubleFunction func) {
int[] updateIndices = updates.getIndices();
double[] updateValues = updates.getValues();
int newNumMappings = numMappings + updates.getNumMappings();
int newCapacity = Math
.max((int) (1.2 * newNumMappings), newNumMappings + 1);
int[] newIndices = new int[newCapacity];
double[] newValues = new double[newCapacity];
int k = 0;
int i = 0, j = 0;
for (; i < numMappings && j < updates.getNumMappings(); ++k) {
if (indices[i] < updateIndices[j]) {
newIndices[k] = indices[i];
newValues[k] = func.apply(values[i], 0);
++i;
} else if (indices[i] > updateIndices[j]) {
newIndices[k] = updateIndices[j];
newValues[k] = func.apply(0, updateValues[j]);
++j;
} else {
newIndices[k] = updateIndices[j];
newValues[k] = func.apply(values[i], updateValues[j]);
++i;
++j;
}
}
if (i < numMappings) {
int delta = numMappings - i;
System.arraycopy(indices, i, newIndices, k, delta);
System.arraycopy(values, i, newValues, k, delta);
k += delta;
}
if (j < updates.getNumMappings()) {
int delta = updates.getNumMappings() - j;
System.arraycopy(updateIndices, j, newIndices, k, delta);
System.arraycopy(updateValues, j, newValues, k, delta);
k += delta;
}
indices = newIndices;
values = newValues;
numMappings = k;
} | java | public void merge(OrderedIntDoubleMapping updates, DoubleDoubleFunction func) {
int[] updateIndices = updates.getIndices();
double[] updateValues = updates.getValues();
int newNumMappings = numMappings + updates.getNumMappings();
int newCapacity = Math
.max((int) (1.2 * newNumMappings), newNumMappings + 1);
int[] newIndices = new int[newCapacity];
double[] newValues = new double[newCapacity];
int k = 0;
int i = 0, j = 0;
for (; i < numMappings && j < updates.getNumMappings(); ++k) {
if (indices[i] < updateIndices[j]) {
newIndices[k] = indices[i];
newValues[k] = func.apply(values[i], 0);
++i;
} else if (indices[i] > updateIndices[j]) {
newIndices[k] = updateIndices[j];
newValues[k] = func.apply(0, updateValues[j]);
++j;
} else {
newIndices[k] = updateIndices[j];
newValues[k] = func.apply(values[i], updateValues[j]);
++i;
++j;
}
}
if (i < numMappings) {
int delta = numMappings - i;
System.arraycopy(indices, i, newIndices, k, delta);
System.arraycopy(values, i, newValues, k, delta);
k += delta;
}
if (j < updates.getNumMappings()) {
int delta = updates.getNumMappings() - j;
System.arraycopy(updateIndices, j, newIndices, k, delta);
System.arraycopy(updateValues, j, newValues, k, delta);
k += delta;
}
indices = newIndices;
values = newValues;
numMappings = k;
} | [
"public",
"void",
"merge",
"(",
"OrderedIntDoubleMapping",
"updates",
",",
"DoubleDoubleFunction",
"func",
")",
"{",
"int",
"[",
"]",
"updateIndices",
"=",
"updates",
".",
"getIndices",
"(",
")",
";",
"double",
"[",
"]",
"updateValues",
"=",
"updates",
".",
... | Merges the updates in linear time by allocating new arrays and iterating
through the existing indices and values and the updates' indices and values
at the same time while selecting the minimum index to set at each step.
@param updates another list of mappings to be merged in. | [
"Merges",
"the",
"updates",
"in",
"linear",
"time",
"by",
"allocating",
"new",
"arrays",
"and",
"iterating",
"through",
"the",
"existing",
"indices",
"and",
"values",
"and",
"the",
"updates",
"indices",
"and",
"values",
"at",
"the",
"same",
"time",
"while",
... | 4de5aa25f263d982a253be88aaf350b51cf3860d | https://github.com/thomasjungblut/tjungblut-math/blob/4de5aa25f263d982a253be88aaf350b51cf3860d/src/de/jungblut/math/sparse/OrderedIntDoubleMapping.java#L134-L180 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/field/FieldFactory.java | FieldFactory.createField | public Field createField(final MathRandom random, final Element element, final String characterSetId) {
Field field = null;
Element fieldElement = null;
Element fieldRefElement = element.getChild(XMLTags.FIELD_REF);
if (fieldRefElement != null) {
fieldElement = getElementFinder(element).findElementById(fieldRefElement);
} else {
fieldElement = element.getChild(XMLTags.FIELD);
}
checkState(fieldElement != null, "Could not find a Field tag or FieldRef tag");
Class<? extends Field> classObject = null;
try {
classObject = getClassObject(fieldElement);
Constructor<? extends Field> constructor = classObject.getConstructor(new Class[] { MathRandom.class, Element.class, String.class });
field = constructor.newInstance(new Object[] { random, fieldElement, characterSetId });
} catch (Exception e) {
throw new IllegalStateException("Could not initialise object of class " + classObject, e);
}
return field;
} | java | public Field createField(final MathRandom random, final Element element, final String characterSetId) {
Field field = null;
Element fieldElement = null;
Element fieldRefElement = element.getChild(XMLTags.FIELD_REF);
if (fieldRefElement != null) {
fieldElement = getElementFinder(element).findElementById(fieldRefElement);
} else {
fieldElement = element.getChild(XMLTags.FIELD);
}
checkState(fieldElement != null, "Could not find a Field tag or FieldRef tag");
Class<? extends Field> classObject = null;
try {
classObject = getClassObject(fieldElement);
Constructor<? extends Field> constructor = classObject.getConstructor(new Class[] { MathRandom.class, Element.class, String.class });
field = constructor.newInstance(new Object[] { random, fieldElement, characterSetId });
} catch (Exception e) {
throw new IllegalStateException("Could not initialise object of class " + classObject, e);
}
return field;
} | [
"public",
"Field",
"createField",
"(",
"final",
"MathRandom",
"random",
",",
"final",
"Element",
"element",
",",
"final",
"String",
"characterSetId",
")",
"{",
"Field",
"field",
"=",
"null",
";",
"Element",
"fieldElement",
"=",
"null",
";",
"Element",
"fieldRe... | Searches for the Field Child tag in the specified element or takes the Field_Ref Tag and
generates a new field instance based on the tag data. So this method has to be called with an
element as parameter that contains a field or a field_ref element, respectively. | [
"Searches",
"for",
"the",
"Field",
"Child",
"tag",
"in",
"the",
"specified",
"element",
"or",
"takes",
"the",
"Field_Ref",
"Tag",
"and",
"generates",
"a",
"new",
"field",
"instance",
"based",
"on",
"the",
"tag",
"data",
".",
"So",
"this",
"method",
"has",
... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/field/FieldFactory.java#L53-L74 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/field/FieldFactory.java | FieldFactory.getClassObject | private Class<? extends Field> getClassObject(final Element element) {
String className = element.getAttributeValue(XMLTags.CLASS);
Class<? extends Field> classObject = null;
try {
className = className.indexOf('.') > 0 ? className : getClass().getPackage().getName() + '.' + className;
classObject = Class.forName(className).asSubclass(Field.class);
} catch (ClassNotFoundException e) {
throw new IllegalStateException("could not get class " + className, e);
}
return classObject;
} | java | private Class<? extends Field> getClassObject(final Element element) {
String className = element.getAttributeValue(XMLTags.CLASS);
Class<? extends Field> classObject = null;
try {
className = className.indexOf('.') > 0 ? className : getClass().getPackage().getName() + '.' + className;
classObject = Class.forName(className).asSubclass(Field.class);
} catch (ClassNotFoundException e) {
throw new IllegalStateException("could not get class " + className, e);
}
return classObject;
} | [
"private",
"Class",
"<",
"?",
"extends",
"Field",
">",
"getClassObject",
"(",
"final",
"Element",
"element",
")",
"{",
"String",
"className",
"=",
"element",
".",
"getAttributeValue",
"(",
"XMLTags",
".",
"CLASS",
")",
";",
"Class",
"<",
"?",
"extends",
"F... | This method returns the class object from which a new instance shall be generated. To achieve
this the class attribute of the passed element is taken to determine the class name. | [
"This",
"method",
"returns",
"the",
"class",
"object",
"from",
"which",
"a",
"new",
"instance",
"shall",
"be",
"generated",
".",
"To",
"achieve",
"this",
"the",
"class",
"attribute",
"of",
"the",
"passed",
"element",
"is",
"taken",
"to",
"determine",
"the",
... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/field/FieldFactory.java#L80-L90 | train |
sualeh/pointlocation6709 | src/main/java/us/fatehi/pointlocation6709/parse/PointLocationParser.java | PointLocationParser.parsePointLocation | public static PointLocation parsePointLocation(final String representation)
throws ParserException
{
if (StringUtils.isBlank(representation))
{
throw new ParserException("No point location value provided");
}
if (!StringUtils.endsWith(representation, "/"))
{
throw new ParserException("Point location value must be terminated with /");
}
final PointLocationParser parser = new PointLocationParser();
final CoordinateParser coordinateParser = new CoordinateParser();
// Split by group
final List<String> tokens = parser.split(representation);
if (tokens.size() != 4)
{
throw new ParserException("Cannot parse " + representation);
}
final Latitude latitude = coordinateParser.parseLatitude(tokens.get(0));
final Longitude longitude = coordinateParser.parseLongitude(tokens.get(1));
final double altitude = NumberUtils.toDouble(tokens.get(2));
final String coordinateReferenceSystemIdentifier = StringUtils
.trimToEmpty(tokens.get(3));
final PointLocation pointLocation = new PointLocation(latitude,
longitude,
altitude,
coordinateReferenceSystemIdentifier);
return pointLocation;
} | java | public static PointLocation parsePointLocation(final String representation)
throws ParserException
{
if (StringUtils.isBlank(representation))
{
throw new ParserException("No point location value provided");
}
if (!StringUtils.endsWith(representation, "/"))
{
throw new ParserException("Point location value must be terminated with /");
}
final PointLocationParser parser = new PointLocationParser();
final CoordinateParser coordinateParser = new CoordinateParser();
// Split by group
final List<String> tokens = parser.split(representation);
if (tokens.size() != 4)
{
throw new ParserException("Cannot parse " + representation);
}
final Latitude latitude = coordinateParser.parseLatitude(tokens.get(0));
final Longitude longitude = coordinateParser.parseLongitude(tokens.get(1));
final double altitude = NumberUtils.toDouble(tokens.get(2));
final String coordinateReferenceSystemIdentifier = StringUtils
.trimToEmpty(tokens.get(3));
final PointLocation pointLocation = new PointLocation(latitude,
longitude,
altitude,
coordinateReferenceSystemIdentifier);
return pointLocation;
} | [
"public",
"static",
"PointLocation",
"parsePointLocation",
"(",
"final",
"String",
"representation",
")",
"throws",
"ParserException",
"{",
"if",
"(",
"StringUtils",
".",
"isBlank",
"(",
"representation",
")",
")",
"{",
"throw",
"new",
"ParserException",
"(",
"\"N... | Parses a string representation of the point location.
@param representation
String representation of the point location
@return Point location
@throws ParserException
On an exception | [
"Parses",
"a",
"string",
"representation",
"of",
"the",
"point",
"location",
"."
] | c0c186c2518f41e3fe174920cacd5c0d082d01a0 | https://github.com/sualeh/pointlocation6709/blob/c0c186c2518f41e3fe174920cacd5c0d082d01a0/src/main/java/us/fatehi/pointlocation6709/parse/PointLocationParser.java#L52-L84 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/products/ProductPropertyUrl.java | ProductPropertyUrl.getPropertyValueLocalizedContentsUrl | public static MozuUrl getPropertyValueLocalizedContentsUrl(String attributeFQN, String productCode, String value)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/products/{productCode}/Properties/{attributeFQN}/values/{value}/LocalizedContent");
formatter.formatUrl("attributeFQN", attributeFQN);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("value", value);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getPropertyValueLocalizedContentsUrl(String attributeFQN, String productCode, String value)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/products/{productCode}/Properties/{attributeFQN}/values/{value}/LocalizedContent");
formatter.formatUrl("attributeFQN", attributeFQN);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("value", value);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getPropertyValueLocalizedContentsUrl",
"(",
"String",
"attributeFQN",
",",
"String",
"productCode",
",",
"String",
"value",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/products/{produ... | Get Resource Url for GetPropertyValueLocalizedContents
@param attributeFQN Fully qualified name for an attribute.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param value The value string to create.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetPropertyValueLocalizedContents"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/products/ProductPropertyUrl.java#L35-L42 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/products/ProductPropertyUrl.java | ProductPropertyUrl.deletePropertyUrl | public static MozuUrl deletePropertyUrl(String attributeFQN, String productCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/products/{productCode}/Properties/{attributeFQN}");
formatter.formatUrl("attributeFQN", attributeFQN);
formatter.formatUrl("productCode", productCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deletePropertyUrl(String attributeFQN, String productCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/products/{productCode}/Properties/{attributeFQN}");
formatter.formatUrl("attributeFQN", attributeFQN);
formatter.formatUrl("productCode", productCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deletePropertyUrl",
"(",
"String",
"attributeFQN",
",",
"String",
"productCode",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/products/{productCode}/Properties/{attributeFQN}\"",
")",
";... | Get Resource Url for DeleteProperty
@param attributeFQN Fully qualified name for an attribute.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteProperty"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/products/ProductPropertyUrl.java#L170-L176 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.getProductsUrl | public static MozuUrl getProductsUrl(String cursorMark, String defaultSort, String filter, Integer pageSize, String responseFields, String responseOptions, String sortBy, Integer startIndex)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/?filter={filter}&startIndex={startIndex}&pageSize={pageSize}&sortBy={sortBy}&responseOptions={responseOptions}&cursorMark={cursorMark}&defaultSort={defaultSort}&responseFields={responseFields}");
formatter.formatUrl("cursorMark", cursorMark);
formatter.formatUrl("defaultSort", defaultSort);
formatter.formatUrl("filter", filter);
formatter.formatUrl("pageSize", pageSize);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("responseOptions", responseOptions);
formatter.formatUrl("sortBy", sortBy);
formatter.formatUrl("startIndex", startIndex);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getProductsUrl(String cursorMark, String defaultSort, String filter, Integer pageSize, String responseFields, String responseOptions, String sortBy, Integer startIndex)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/?filter={filter}&startIndex={startIndex}&pageSize={pageSize}&sortBy={sortBy}&responseOptions={responseOptions}&cursorMark={cursorMark}&defaultSort={defaultSort}&responseFields={responseFields}");
formatter.formatUrl("cursorMark", cursorMark);
formatter.formatUrl("defaultSort", defaultSort);
formatter.formatUrl("filter", filter);
formatter.formatUrl("pageSize", pageSize);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("responseOptions", responseOptions);
formatter.formatUrl("sortBy", sortBy);
formatter.formatUrl("startIndex", startIndex);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getProductsUrl",
"(",
"String",
"cursorMark",
",",
"String",
"defaultSort",
",",
"String",
"filter",
",",
"Integer",
"pageSize",
",",
"String",
"responseFields",
",",
"String",
"responseOptions",
",",
"String",
"sortBy",
",",
"Integ... | Get Resource Url for GetProducts
@param cursorMark In your first deep paged request, set this parameter to . Then, in all subsequent requests, set this parameter to the subsequent values of that's returned in each response to continue paging through the results. Continue this pattern until is null, which signifies the end of the paged results.
@param defaultSort Sets the default sorting for content. Sort does not use AND in determining the order
@param filter A set of filter expressions representing the search parameters for a query. This parameter is optional. Refer to [Sorting and Filtering](../../../../Developer/api-guides/sorting-filtering.htm) for a list of supported filters.
@param pageSize When creating paged results from a query, this value indicates the zero-based offset in the complete result set where the returned entities begin. For example, with this parameter set to 25, to get the 51st through the 75th items, set startIndex to 50.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param responseOptions Options you can specify for the response. This parameter is null by default.You can primarily use this parameter to return volume price band information in product details, which you can then display on category pages and search results depanding on your theme configuration. To return volume price band information, set this parameter to .
@param sortBy The element to sort the results by and the channel in which the results appear. Either ascending (a-z) or descending (z-a) channel. Optional. Refer to [Sorting and Filtering](../../../../Developer/api-guides/sorting-filtering.htm) for more information.
@param startIndex When creating paged results from a query, this value indicates the zero-based offset in the complete result set where the returned entities begin. For example, with pageSize set to 25, to get the 51st through the 75th items, set this parameter to 50.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetProducts"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L28-L40 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.getProductInventoryUrl | public static MozuUrl getProductInventoryUrl(String locationCodes, String productCode, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/locationinventory?locationCodes={locationCodes}&responseFields={responseFields}");
formatter.formatUrl("locationCodes", locationCodes);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getProductInventoryUrl(String locationCodes, String productCode, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/locationinventory?locationCodes={locationCodes}&responseFields={responseFields}");
formatter.formatUrl("locationCodes", locationCodes);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getProductInventoryUrl",
"(",
"String",
"locationCodes",
",",
"String",
"productCode",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/storefront/products/{prod... | Get Resource Url for GetProductInventory
@param locationCodes Array of location codes for which to retrieve product inventory information.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetProductInventory"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L49-L56 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.getProductUrl | public static MozuUrl getProductUrl(Boolean acceptVariantProductCode, Boolean allowInactive, String productCode, String purchaseLocation, Integer quantity, String responseFields, Boolean skipInventoryCheck, Boolean supressOutOfStock404, String variationProductCode, String variationProductCodeFilter)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}?variationProductCode={variationProductCode}&allowInactive={allowInactive}&skipInventoryCheck={skipInventoryCheck}&supressOutOfStock404={supressOutOfStock404}&quantity={quantity}&acceptVariantProductCode={acceptVariantProductCode}&purchaseLocation={purchaseLocation}&variationProductCodeFilter={variationProductCodeFilter}&responseFields={responseFields}");
formatter.formatUrl("acceptVariantProductCode", acceptVariantProductCode);
formatter.formatUrl("allowInactive", allowInactive);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("purchaseLocation", purchaseLocation);
formatter.formatUrl("quantity", quantity);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
formatter.formatUrl("supressOutOfStock404", supressOutOfStock404);
formatter.formatUrl("variationProductCode", variationProductCode);
formatter.formatUrl("variationProductCodeFilter", variationProductCodeFilter);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getProductUrl(Boolean acceptVariantProductCode, Boolean allowInactive, String productCode, String purchaseLocation, Integer quantity, String responseFields, Boolean skipInventoryCheck, Boolean supressOutOfStock404, String variationProductCode, String variationProductCodeFilter)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}?variationProductCode={variationProductCode}&allowInactive={allowInactive}&skipInventoryCheck={skipInventoryCheck}&supressOutOfStock404={supressOutOfStock404}&quantity={quantity}&acceptVariantProductCode={acceptVariantProductCode}&purchaseLocation={purchaseLocation}&variationProductCodeFilter={variationProductCodeFilter}&responseFields={responseFields}");
formatter.formatUrl("acceptVariantProductCode", acceptVariantProductCode);
formatter.formatUrl("allowInactive", allowInactive);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("purchaseLocation", purchaseLocation);
formatter.formatUrl("quantity", quantity);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
formatter.formatUrl("supressOutOfStock404", supressOutOfStock404);
formatter.formatUrl("variationProductCode", variationProductCode);
formatter.formatUrl("variationProductCodeFilter", variationProductCodeFilter);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getProductUrl",
"(",
"Boolean",
"acceptVariantProductCode",
",",
"Boolean",
"allowInactive",
",",
"String",
"productCode",
",",
"String",
"purchaseLocation",
",",
"Integer",
"quantity",
",",
"String",
"responseFields",
",",
"Boolean",
"... | Get Resource Url for GetProduct
@param acceptVariantProductCode Specifies whether to accept a product variant's code as the .When you set this parameter to , you can pass in a product variant's code in the GetProduct call to retrieve the product variant details that are associated with the base product.
@param allowInactive If true, allow inactive categories to be retrieved in the category list response. If false, the categories retrieved will not include ones marked inactive.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param purchaseLocation The location where the order item(s) was purchased.
@param quantity The number of cart items in the shopper's active cart.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param skipInventoryCheck If true, skip the process to validate inventory when creating this product reservation.
@param supressOutOfStock404 Specifies whether to supress the 404 error when the product is out of stock.
@param variationProductCode Merchant-created code associated with a specific product variation. Variation product codes maintain an association with the base product code.
@param variationProductCodeFilter
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetProduct"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L72-L86 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.getProductForIndexingUrl | public static MozuUrl getProductForIndexingUrl(DateTime lastModifiedDate, String productCode, Long productVersion, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/indexing/{productCode}?productVersion={productVersion}&lastModifiedDate={lastModifiedDate}&responseFields={responseFields}");
formatter.formatUrl("lastModifiedDate", lastModifiedDate);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("productVersion", productVersion);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getProductForIndexingUrl(DateTime lastModifiedDate, String productCode, Long productVersion, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/indexing/{productCode}?productVersion={productVersion}&lastModifiedDate={lastModifiedDate}&responseFields={responseFields}");
formatter.formatUrl("lastModifiedDate", lastModifiedDate);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("productVersion", productVersion);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getProductForIndexingUrl",
"(",
"DateTime",
"lastModifiedDate",
",",
"String",
"productCode",
",",
"Long",
"productVersion",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/ap... | Get Resource Url for GetProductForIndexing
@param lastModifiedDate The date when the product was last updated.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param productVersion The product version.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetProductForIndexing"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L96-L104 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.configuredProductUrl | public static MozuUrl configuredProductUrl(Boolean includeOptionDetails, String productCode, String purchaseLocation, Integer quantity, String responseFields, Boolean skipInventoryCheck, String variationProductCodeFilter)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/configure?includeOptionDetails={includeOptionDetails}&skipInventoryCheck={skipInventoryCheck}&quantity={quantity}&purchaseLocation={purchaseLocation}&variationProductCodeFilter={variationProductCodeFilter}&responseFields={responseFields}");
formatter.formatUrl("includeOptionDetails", includeOptionDetails);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("purchaseLocation", purchaseLocation);
formatter.formatUrl("quantity", quantity);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
formatter.formatUrl("variationProductCodeFilter", variationProductCodeFilter);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl configuredProductUrl(Boolean includeOptionDetails, String productCode, String purchaseLocation, Integer quantity, String responseFields, Boolean skipInventoryCheck, String variationProductCodeFilter)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/configure?includeOptionDetails={includeOptionDetails}&skipInventoryCheck={skipInventoryCheck}&quantity={quantity}&purchaseLocation={purchaseLocation}&variationProductCodeFilter={variationProductCodeFilter}&responseFields={responseFields}");
formatter.formatUrl("includeOptionDetails", includeOptionDetails);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("purchaseLocation", purchaseLocation);
formatter.formatUrl("quantity", quantity);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
formatter.formatUrl("variationProductCodeFilter", variationProductCodeFilter);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"configuredProductUrl",
"(",
"Boolean",
"includeOptionDetails",
",",
"String",
"productCode",
",",
"String",
"purchaseLocation",
",",
"Integer",
"quantity",
",",
"String",
"responseFields",
",",
"Boolean",
"skipInventoryCheck",
",",
"Strin... | Get Resource Url for ConfiguredProduct
@param includeOptionDetails If true, the response returns details about the product. If false, returns a product summary such as the product name, price, and sale price.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param purchaseLocation The location where the order item(s) was purchased.
@param quantity The number of cart items in the shopper's active cart.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param skipInventoryCheck If true, skip the process to validate inventory when creating this product reservation.
@param variationProductCodeFilter
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"ConfiguredProduct"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L117-L128 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.validateProductUrl | public static MozuUrl validateProductUrl(String productCode, String purchaseLocation, Integer quantity, String responseFields, Boolean skipDefaults, Boolean skipInventoryCheck)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/validate?skipInventoryCheck={skipInventoryCheck}&quantity={quantity}&skipDefaults={skipDefaults}&purchaseLocation={purchaseLocation}&responseFields={responseFields}");
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("purchaseLocation", purchaseLocation);
formatter.formatUrl("quantity", quantity);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipDefaults", skipDefaults);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl validateProductUrl(String productCode, String purchaseLocation, Integer quantity, String responseFields, Boolean skipDefaults, Boolean skipInventoryCheck)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/validate?skipInventoryCheck={skipInventoryCheck}&quantity={quantity}&skipDefaults={skipDefaults}&purchaseLocation={purchaseLocation}&responseFields={responseFields}");
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("purchaseLocation", purchaseLocation);
formatter.formatUrl("quantity", quantity);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipDefaults", skipDefaults);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"validateProductUrl",
"(",
"String",
"productCode",
",",
"String",
"purchaseLocation",
",",
"Integer",
"quantity",
",",
"String",
"responseFields",
",",
"Boolean",
"skipDefaults",
",",
"Boolean",
"skipInventoryCheck",
")",
"{",
"UrlForma... | Get Resource Url for ValidateProduct
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param purchaseLocation The location where the order item(s) was purchased.
@param quantity The number of cart items in the shopper's active cart.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param skipDefaults Normally, product validation applies default extras to products that do not have options specified. If , product validation does not apply default extras to products.
@param skipInventoryCheck If true, skip the process to validate inventory when creating this product reservation.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"ValidateProduct"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L140-L150 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java | ProductUrl.validateDiscountsUrl | public static MozuUrl validateDiscountsUrl(Boolean allowInactive, Integer customerAccountId, String productCode, String responseFields, Boolean skipInventoryCheck, String variationProductCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/validateDiscounts?variationProductCode={variationProductCode}&customerAccountId={customerAccountId}&allowInactive={allowInactive}&skipInventoryCheck={skipInventoryCheck}&responseFields={responseFields}");
formatter.formatUrl("allowInactive", allowInactive);
formatter.formatUrl("customerAccountId", customerAccountId);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
formatter.formatUrl("variationProductCode", variationProductCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl validateDiscountsUrl(Boolean allowInactive, Integer customerAccountId, String productCode, String responseFields, Boolean skipInventoryCheck, String variationProductCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/products/{productCode}/validateDiscounts?variationProductCode={variationProductCode}&customerAccountId={customerAccountId}&allowInactive={allowInactive}&skipInventoryCheck={skipInventoryCheck}&responseFields={responseFields}");
formatter.formatUrl("allowInactive", allowInactive);
formatter.formatUrl("customerAccountId", customerAccountId);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("skipInventoryCheck", skipInventoryCheck);
formatter.formatUrl("variationProductCode", variationProductCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"validateDiscountsUrl",
"(",
"Boolean",
"allowInactive",
",",
"Integer",
"customerAccountId",
",",
"String",
"productCode",
",",
"String",
"responseFields",
",",
"Boolean",
"skipInventoryCheck",
",",
"String",
"variationProductCode",
")",
... | Get Resource Url for ValidateDiscounts
@param allowInactive If true, allow inactive categories to be retrieved in the category list response. If false, the categories retrieved will not include ones marked inactive.
@param customerAccountId The unique identifier of the customer account for which to retrieve wish lists.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param skipInventoryCheck If true, skip the process to validate inventory when creating this product reservation.
@param variationProductCode Merchant-created code associated with a specific product variation. Variation product codes maintain an association with the base product code.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"ValidateDiscounts"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/ProductUrl.java#L162-L172 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/LocationInventoryUrl.java | LocationInventoryUrl.getLocationInventoryUrl | public static MozuUrl getLocationInventoryUrl(String locationCode, String productCode, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/locationinventory/{locationCode}/{productCode}?responseFields={responseFields}");
formatter.formatUrl("locationCode", locationCode);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getLocationInventoryUrl(String locationCode, String productCode, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/locationinventory/{locationCode}/{productCode}?responseFields={responseFields}");
formatter.formatUrl("locationCode", locationCode);
formatter.formatUrl("productCode", productCode);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getLocationInventoryUrl",
"(",
"String",
"locationCode",
",",
"String",
"productCode",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/locationinventory/{... | Get Resource Url for GetLocationInventory
@param locationCode The unique, user-defined code that identifies a location.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetLocationInventory"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/LocationInventoryUrl.java#L23-L30 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/LocationInventoryUrl.java | LocationInventoryUrl.addLocationInventoryUrl | public static MozuUrl addLocationInventoryUrl(String locationCode, Boolean performUpserts)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/locationinventory/{locationCode}?performUpserts={performUpserts}");
formatter.formatUrl("locationCode", locationCode);
formatter.formatUrl("performUpserts", performUpserts);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl addLocationInventoryUrl(String locationCode, Boolean performUpserts)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/locationinventory/{locationCode}?performUpserts={performUpserts}");
formatter.formatUrl("locationCode", locationCode);
formatter.formatUrl("performUpserts", performUpserts);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"addLocationInventoryUrl",
"(",
"String",
"locationCode",
",",
"Boolean",
"performUpserts",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/locationinventory/{locationCode}?performUpserts={perfo... | Get Resource Url for AddLocationInventory
@param locationCode The unique, user-defined code that identifies a location.
@param performUpserts Query string parameter lets the service perform an update for a new or existing record. When run, the update occurs without throwing a conflict exception that the record exists. If true, the updates completes regardless of the record currently existing. By default, if no value is specified, the service assumes this value is false.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"AddLocationInventory"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/LocationInventoryUrl.java#L62-L68 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/LocationInventoryUrl.java | LocationInventoryUrl.deleteLocationInventoryUrl | public static MozuUrl deleteLocationInventoryUrl(String locationCode, String productCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/locationinventory/{locationCode}/{productCode}");
formatter.formatUrl("locationCode", locationCode);
formatter.formatUrl("productCode", productCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteLocationInventoryUrl(String locationCode, String productCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/locationinventory/{locationCode}/{productCode}");
formatter.formatUrl("locationCode", locationCode);
formatter.formatUrl("productCode", productCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteLocationInventoryUrl",
"(",
"String",
"locationCode",
",",
"String",
"productCode",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/locationinventory/{locationCode}/{productCode}\"",
")... | Get Resource Url for DeleteLocationInventory
@param locationCode The unique, user-defined code that identifies a location.
@param productCode The unique, user-defined product code of a product, used throughout to reference and associate to a product.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteLocationInventory"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/LocationInventoryUrl.java#L88-L94 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/orders/OrderNoteUrl.java | OrderNoteUrl.getOrderNotesUrl | public static MozuUrl getOrderNotesUrl(String orderId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/notes");
formatter.formatUrl("orderId", orderId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getOrderNotesUrl(String orderId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/notes");
formatter.formatUrl("orderId", orderId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getOrderNotesUrl",
"(",
"String",
"orderId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/orders/{orderId}/notes\"",
")",
";",
"formatter",
".",
"formatUrl",
"(",
"\"orderId\"",
",",
"orderId"... | Get Resource Url for GetOrderNotes
@param orderId Unique identifier of the order.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetOrderNotes"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/orders/OrderNoteUrl.java#L21-L26 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/orders/OrderNoteUrl.java | OrderNoteUrl.getOrderNoteUrl | public static MozuUrl getOrderNoteUrl(String noteId, String orderId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/notes/{noteId}?responseFields={responseFields}");
formatter.formatUrl("noteId", noteId);
formatter.formatUrl("orderId", orderId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getOrderNoteUrl(String noteId, String orderId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/notes/{noteId}?responseFields={responseFields}");
formatter.formatUrl("noteId", noteId);
formatter.formatUrl("orderId", orderId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getOrderNoteUrl",
"(",
"String",
"noteId",
",",
"String",
"orderId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/orders/{orderId}/notes/{noteId}?responseFields={res... | Get Resource Url for GetOrderNote
@param noteId Unique identifier of a particular note to retrieve.
@param orderId Unique identifier of the order.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetOrderNote"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/orders/OrderNoteUrl.java#L35-L42 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/orders/OrderNoteUrl.java | OrderNoteUrl.deleteOrderNoteUrl | public static MozuUrl deleteOrderNoteUrl(String noteId, String orderId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/notes/{noteId}");
formatter.formatUrl("noteId", noteId);
formatter.formatUrl("orderId", orderId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteOrderNoteUrl(String noteId, String orderId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/notes/{noteId}");
formatter.formatUrl("noteId", noteId);
formatter.formatUrl("orderId", orderId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteOrderNoteUrl",
"(",
"String",
"noteId",
",",
"String",
"orderId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/orders/{orderId}/notes/{noteId}\"",
")",
";",
"formatter",
".",
"formatUrl",
... | Get Resource Url for DeleteOrderNote
@param noteId Unique identifier of a particular note to retrieve.
@param orderId Unique identifier of the order.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteOrderNote"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/orders/OrderNoteUrl.java#L80-L86 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/base/ConditionalOptional.java | ConditionalOptional.getContainedIds | @Override
public Set<String> getContainedIds() {
Set<String> s = super.getContainedIds();
s.addAll(constraint.getContainedIds());
return s;
} | java | @Override
public Set<String> getContainedIds() {
Set<String> s = super.getContainedIds();
s.addAll(constraint.getContainedIds());
return s;
} | [
"@",
"Override",
"public",
"Set",
"<",
"String",
">",
"getContainedIds",
"(",
")",
"{",
"Set",
"<",
"String",
">",
"s",
"=",
"super",
".",
"getContainedIds",
"(",
")",
";",
"s",
".",
"addAll",
"(",
"constraint",
".",
"getContainedIds",
"(",
")",
")",
... | Returns the set of constained ids. This Set contains all ids of the embedded constraint plus
its own if this is set. | [
"Returns",
"the",
"set",
"of",
"constained",
"ids",
".",
"This",
"Set",
"contains",
"all",
"ids",
"of",
"the",
"embedded",
"constraint",
"plus",
"its",
"own",
"if",
"this",
"is",
"set",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/base/ConditionalOptional.java#L124-L129 | train |
EsupPortail/esup-smsu-api | src/main/java/org/esupportail/smsuapi/business/purge/PurgeSms.java | PurgeSms.purgeSmsOlderThan | private void purgeSmsOlderThan(final Date date) {
logger.debug("Starting purge of SMS table with parameter : \n" + " - date : " + date);
final int nbSmsDeleted = daoService.deleteSmsOlderThan(date);
logger.debug("End purge of SMS table, result : \n" +
" - number of sms deleted : " + nbSmsDeleted);
} | java | private void purgeSmsOlderThan(final Date date) {
logger.debug("Starting purge of SMS table with parameter : \n" + " - date : " + date);
final int nbSmsDeleted = daoService.deleteSmsOlderThan(date);
logger.debug("End purge of SMS table, result : \n" +
" - number of sms deleted : " + nbSmsDeleted);
} | [
"private",
"void",
"purgeSmsOlderThan",
"(",
"final",
"Date",
"date",
")",
"{",
"logger",
".",
"debug",
"(",
"\"Starting purge of SMS table with parameter : \\n\"",
"+",
"\" - date : \"",
"+",
"date",
")",
";",
"final",
"int",
"nbSmsDeleted",
"=",
"daoService",
".",... | Purge the Sms in db with date older than the specified date.
@param date | [
"Purge",
"the",
"Sms",
"in",
"db",
"with",
"date",
"older",
"than",
"the",
"specified",
"date",
"."
] | 7b6a4388065adfd84655dbc83f37080874953b20 | https://github.com/EsupPortail/esup-smsu-api/blob/7b6a4388065adfd84655dbc83f37080874953b20/src/main/java/org/esupportail/smsuapi/business/purge/PurgeSms.java#L41-L49 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/carts/ExtendedPropertyUrl.java | ExtendedPropertyUrl.updateExtendedPropertyUrl | public static MozuUrl updateExtendedPropertyUrl(String key, String responseFields, Boolean upsert)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/extendedproperties/{key}?upsert={upsert}&responseFields={responseFields}");
formatter.formatUrl("key", key);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("upsert", upsert);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl updateExtendedPropertyUrl(String key, String responseFields, Boolean upsert)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/extendedproperties/{key}?upsert={upsert}&responseFields={responseFields}");
formatter.formatUrl("key", key);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("upsert", upsert);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"updateExtendedPropertyUrl",
"(",
"String",
"key",
",",
"String",
"responseFields",
",",
"Boolean",
"upsert",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/current/extendedproperties/{key}?upser... | Get Resource Url for UpdateExtendedProperty
@param key Key used for metadata defined for objects, including extensible attributes, custom attributes associated with a shipping provider, and search synonyms definitions. This content may be user-defined depending on the object and usage.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param upsert Any set of key value pairs to be stored in the extended properties of a cart.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"UpdateExtendedProperty"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/carts/ExtendedPropertyUrl.java#L43-L50 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/carts/ExtendedPropertyUrl.java | ExtendedPropertyUrl.updateExtendedPropertiesUrl | public static MozuUrl updateExtendedPropertiesUrl(Boolean upsert)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/extendedproperties?upsert={upsert}");
formatter.formatUrl("upsert", upsert);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl updateExtendedPropertiesUrl(Boolean upsert)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/extendedproperties?upsert={upsert}");
formatter.formatUrl("upsert", upsert);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"updateExtendedPropertiesUrl",
"(",
"Boolean",
"upsert",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/current/extendedproperties?upsert={upsert}\"",
")",
";",
"formatter",
".",
"formatUrl",
"("... | Get Resource Url for UpdateExtendedProperties
@param upsert Any set of key value pairs to be stored in the extended properties of a cart.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"UpdateExtendedProperties"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/carts/ExtendedPropertyUrl.java#L57-L62 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/carts/ExtendedPropertyUrl.java | ExtendedPropertyUrl.deleteExtendedPropertiesUrl | public static MozuUrl deleteExtendedPropertiesUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/extendedproperties");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteExtendedPropertiesUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/extendedproperties");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteExtendedPropertiesUrl",
"(",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/current/extendedproperties\"",
")",
";",
"return",
"new",
"MozuUrl",
"(",
"formatter",
".",
"getResourceUrl",
... | Get Resource Url for DeleteExtendedProperties
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteExtendedProperties"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/carts/ExtendedPropertyUrl.java#L68-L72 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/UniqueValues.java | UniqueValues.initValuesImpl | @Override
protected String initValuesImpl(final FieldCase ca) {
if (ca == FieldCase.NULL || ca == FieldCase.BLANK) {
return null;
}
String s = super.initValuesImpl(ca);
int counter = 10000;
while (set.contains(s) && counter > 0) {
s = super.initValuesImpl(ca);
counter--;
}
if (counter == 0) {
throw new IllegalStateException("Could not generate unique value");
}
set.add(s);
return s;
} | java | @Override
protected String initValuesImpl(final FieldCase ca) {
if (ca == FieldCase.NULL || ca == FieldCase.BLANK) {
return null;
}
String s = super.initValuesImpl(ca);
int counter = 10000;
while (set.contains(s) && counter > 0) {
s = super.initValuesImpl(ca);
counter--;
}
if (counter == 0) {
throw new IllegalStateException("Could not generate unique value");
}
set.add(s);
return s;
} | [
"@",
"Override",
"protected",
"String",
"initValuesImpl",
"(",
"final",
"FieldCase",
"ca",
")",
"{",
"if",
"(",
"ca",
"==",
"FieldCase",
".",
"NULL",
"||",
"ca",
"==",
"FieldCase",
".",
"BLANK",
")",
"{",
"return",
"null",
";",
"}",
"String",
"s",
"=",... | Calls initValuesImpl on the super class. If the returned value is already in the list of
values initValuesImpl is called again. This happens up to 10000 times. If a new value is
found it is stored in the set. | [
"Calls",
"initValuesImpl",
"on",
"the",
"super",
"class",
".",
"If",
"the",
"returned",
"value",
"is",
"already",
"in",
"the",
"list",
"of",
"values",
"initValuesImpl",
"is",
"called",
"again",
".",
"This",
"happens",
"up",
"to",
"10000",
"times",
".",
"If... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/UniqueValues.java#L60-L76 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Complex.java | Complex.getMaxLength | @Override
public int getMaxLength() {
int max = -1;
for (Constraint c : constraints) {
int cM = c.getMaxLength();
if (max < cM) {
max = cM;
}
}
return max;
} | java | @Override
public int getMaxLength() {
int max = -1;
for (Constraint c : constraints) {
int cM = c.getMaxLength();
if (max < cM) {
max = cM;
}
}
return max;
} | [
"@",
"Override",
"public",
"int",
"getMaxLength",
"(",
")",
"{",
"int",
"max",
"=",
"-",
"1",
";",
"for",
"(",
"Constraint",
"c",
":",
"constraints",
")",
"{",
"int",
"cM",
"=",
"c",
".",
"getMaxLength",
"(",
")",
";",
"if",
"(",
"max",
"<",
"cM"... | Returns the maximum of all embedded constraints.
@return the maximum of all embedded constraints | [
"Returns",
"the",
"maximum",
"of",
"all",
"embedded",
"constraints",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Complex.java#L94-L104 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Complex.java | Complex.initValues | @Override
public String initValues(final FieldCase ca) {
if (ca != null) {
/*
* If a FieldCase is given all fields will be generated anew, independent of the case
* combination.
*/
for (Constraint c : constraints) {
c.resetValues();
}
}
for (Constraint c : constraints) {
c.initValues(ca);
}
return null;
} | java | @Override
public String initValues(final FieldCase ca) {
if (ca != null) {
/*
* If a FieldCase is given all fields will be generated anew, independent of the case
* combination.
*/
for (Constraint c : constraints) {
c.resetValues();
}
}
for (Constraint c : constraints) {
c.initValues(ca);
}
return null;
} | [
"@",
"Override",
"public",
"String",
"initValues",
"(",
"final",
"FieldCase",
"ca",
")",
"{",
"if",
"(",
"ca",
"!=",
"null",
")",
"{",
"/*\r\n\t\t\t * If a FieldCase is given all fields will be generated anew, independent of the case\r\n\t\t\t * combination.\r\n\t\t\t */",
"for... | Initializes all subconstraints.
@return always {@code null} | [
"Initializes",
"all",
"subconstraints",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Complex.java#L119-L134 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Complex.java | Complex.resetValues | @Override
public void resetValues() {
int length = constraints.size();
for (int i = length - 1; i >= 0; i--) {
Constraint c = constraints.get(i);
c.resetValues();
if (dependent && c.hasNextCase()) {
// reset all constraints below
// only if the constraint above still has a case to be processed
for (int j = i + 1; j < length; j++) {
constraints.get(j).resetCase();
}
break;
}
}
} | java | @Override
public void resetValues() {
int length = constraints.size();
for (int i = length - 1; i >= 0; i--) {
Constraint c = constraints.get(i);
c.resetValues();
if (dependent && c.hasNextCase()) {
// reset all constraints below
// only if the constraint above still has a case to be processed
for (int j = i + 1; j < length; j++) {
constraints.get(j).resetCase();
}
break;
}
}
} | [
"@",
"Override",
"public",
"void",
"resetValues",
"(",
")",
"{",
"int",
"length",
"=",
"constraints",
".",
"size",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"length",
"-",
"1",
";",
"i",
">=",
"0",
";",
"i",
"--",
")",
"{",
"Constraint",
"c",
... | Resets the values of the sub-constraints. To achieve this the list of sub-constraints is
passed backwards. If all sub-constraints are independent of each other, simply all
sub-constraints will be reset. However, if they are dependent, the case of all constraints in
the list below the first constraint which still has to process a test case will be reset and
the run will be canceled. This way all the cases of the last sub-constraints will be run
first. Then the next case will be called in the penultimate sub-constraint. Again all cases
of the last one will be run, etc. | [
"Resets",
"the",
"values",
"of",
"the",
"sub",
"-",
"constraints",
".",
"To",
"achieve",
"this",
"the",
"list",
"of",
"sub",
"-",
"constraints",
"is",
"passed",
"backwards",
".",
"If",
"all",
"sub",
"-",
"constraints",
"are",
"independent",
"of",
"each",
... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/constraint/Complex.java#L151-L166 | train |
mgm-tp/jfunk | jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/util/Node.java | Node.getCharacters | public char[] getCharacters(final int size, final int bad) {
if (size == 0) {
return new char[0];
}
char[] chars = new char[size];
for (int i = 0; i < chars.length; i++) {
chars[i] = field.getAllowedCharacter();
}
// remove leading blanks
for (int i = 0; i < 10 && Character.isSpaceChar(chars[0]); i++) {
chars[0] = field.getAllowedCharacter();
}
// remove trailing blanks
for (int i = 0; i < 10 && Character.isSpaceChar(chars[chars.length - 1]); i++) {
chars[chars.length - 1] = field.getAllowedCharacter();
}
int toBeReplaced = bad;
if (-2 == bad) {
if (!canBad()) {
if (log.isDebugEnabled()) {
log.debug("This node does not allow negative characters, " + "but as all characters shall be negative no character is returned");
}
return new char[0];
}
toBeReplaced = chars.length;
} else if (-1 == bad) {
// 1 - (all -1) characters are replaced
toBeReplaced = 1 + rnd.getInt(chars.length - 2);
}
if (toBeReplaced > 0) {
// create a random index list
List<Integer> l = new ArrayList<Integer>(chars.length);
for (int i = 0; i < chars.length; i++) {
l.add(i);
}
Collections.shuffle(l);
for (int i = 0; i < toBeReplaced; i++) {
int index = l.remove(0);
Character currentBad = field.getForbiddenCharacter();
if (currentBad == null) {
log.warn("This node does not allow negative characters");
break;
}
// The first and the last character as a forbidden character is not a space!
// this would usually shorten the length
if (index == 0 || index == chars.length - 1) {
int counter = 0;
while (counter < 100 && Character.isSpaceChar(currentBad)) {
currentBad = field.getForbiddenCharacter();
counter++;
}
if (counter == 100) {
log.warn("Space is the only possible forbidden character for this node, no replacement!");
break;
}
}
if (log.isDebugEnabled()) {
log.debug("Replace Character " + Character.toString(chars[index]) + " with " + Character.toString(currentBad));
}
chars[index] = currentBad;
}
}
return chars;
} | java | public char[] getCharacters(final int size, final int bad) {
if (size == 0) {
return new char[0];
}
char[] chars = new char[size];
for (int i = 0; i < chars.length; i++) {
chars[i] = field.getAllowedCharacter();
}
// remove leading blanks
for (int i = 0; i < 10 && Character.isSpaceChar(chars[0]); i++) {
chars[0] = field.getAllowedCharacter();
}
// remove trailing blanks
for (int i = 0; i < 10 && Character.isSpaceChar(chars[chars.length - 1]); i++) {
chars[chars.length - 1] = field.getAllowedCharacter();
}
int toBeReplaced = bad;
if (-2 == bad) {
if (!canBad()) {
if (log.isDebugEnabled()) {
log.debug("This node does not allow negative characters, " + "but as all characters shall be negative no character is returned");
}
return new char[0];
}
toBeReplaced = chars.length;
} else if (-1 == bad) {
// 1 - (all -1) characters are replaced
toBeReplaced = 1 + rnd.getInt(chars.length - 2);
}
if (toBeReplaced > 0) {
// create a random index list
List<Integer> l = new ArrayList<Integer>(chars.length);
for (int i = 0; i < chars.length; i++) {
l.add(i);
}
Collections.shuffle(l);
for (int i = 0; i < toBeReplaced; i++) {
int index = l.remove(0);
Character currentBad = field.getForbiddenCharacter();
if (currentBad == null) {
log.warn("This node does not allow negative characters");
break;
}
// The first and the last character as a forbidden character is not a space!
// this would usually shorten the length
if (index == 0 || index == chars.length - 1) {
int counter = 0;
while (counter < 100 && Character.isSpaceChar(currentBad)) {
currentBad = field.getForbiddenCharacter();
counter++;
}
if (counter == 100) {
log.warn("Space is the only possible forbidden character for this node, no replacement!");
break;
}
}
if (log.isDebugEnabled()) {
log.debug("Replace Character " + Character.toString(chars[index]) + " with " + Character.toString(currentBad));
}
chars[index] = currentBad;
}
}
return chars;
} | [
"public",
"char",
"[",
"]",
"getCharacters",
"(",
"final",
"int",
"size",
",",
"final",
"int",
"bad",
")",
"{",
"if",
"(",
"size",
"==",
"0",
")",
"{",
"return",
"new",
"char",
"[",
"0",
"]",
";",
"}",
"char",
"[",
"]",
"chars",
"=",
"new",
"ch... | Returns size characters in an array. If bad is set to true at least half of all the
characters will be set to a forbidden character.
@param bad
0 equals no bad character, 1 equals 1 - all are bad and 2 equals all are bad
@return a character string | [
"Returns",
"size",
"characters",
"in",
"an",
"array",
".",
"If",
"bad",
"is",
"set",
"to",
"true",
"at",
"least",
"half",
"of",
"all",
"the",
"characters",
"will",
"be",
"set",
"to",
"a",
"forbidden",
"character",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-data-generator/src/main/java/com/mgmtp/jfunk/data/generator/util/Node.java#L70-L133 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java | PaymentSettingsUrl.getThirdPartyPaymentWorkflowWithValuesUrl | public static MozuUrl getThirdPartyPaymentWorkflowWithValuesUrl(String fullyQualifiedName, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflow/{fullyQualifiedName}?responseFields={responseFields}");
formatter.formatUrl("fullyQualifiedName", fullyQualifiedName);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getThirdPartyPaymentWorkflowWithValuesUrl(String fullyQualifiedName, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflow/{fullyQualifiedName}?responseFields={responseFields}");
formatter.formatUrl("fullyQualifiedName", fullyQualifiedName);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getThirdPartyPaymentWorkflowWithValuesUrl",
"(",
"String",
"fullyQualifiedName",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/settings/checkout/paymentsettings/thirdpartyw... | Get Resource Url for GetThirdPartyPaymentWorkflowWithValues
@param fullyQualifiedName Fully qualified name of the attribute for the third-party payment workflow.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetThirdPartyPaymentWorkflowWithValues"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java#L22-L28 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java | PaymentSettingsUrl.getThirdPartyPaymentWorkflowsUrl | public static MozuUrl getThirdPartyPaymentWorkflowsUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getThirdPartyPaymentWorkflowsUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getThirdPartyPaymentWorkflowsUrl",
"(",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows\"",
")",
";",
"return",
"new",
"MozuUrl",
"(",
"formatter",
... | Get Resource Url for GetThirdPartyPaymentWorkflows
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetThirdPartyPaymentWorkflows"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java#L34-L38 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java | PaymentSettingsUrl.addThirdPartyPaymentWorkflowUrl | public static MozuUrl addThirdPartyPaymentWorkflowUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl addThirdPartyPaymentWorkflowUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"addThirdPartyPaymentWorkflowUrl",
"(",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows\"",
")",
";",
"return",
"new",
"MozuUrl",
"(",
"formatter",
... | Get Resource Url for AddThirdPartyPaymentWorkflow
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"AddThirdPartyPaymentWorkflow"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java#L44-L48 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java | PaymentSettingsUrl.deleteThirdPartyPaymentWorkflowUrl | public static MozuUrl deleteThirdPartyPaymentWorkflowUrl(String fullyQualifiedName)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows/{fullyQualifiedName}");
formatter.formatUrl("fullyQualifiedName", fullyQualifiedName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteThirdPartyPaymentWorkflowUrl(String fullyQualifiedName)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows/{fullyQualifiedName}");
formatter.formatUrl("fullyQualifiedName", fullyQualifiedName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteThirdPartyPaymentWorkflowUrl",
"(",
"String",
"fullyQualifiedName",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/settings/checkout/paymentsettings/thirdpartyworkflows/{fullyQualifiedName}\"",
")",
";"... | Get Resource Url for DeleteThirdPartyPaymentWorkflow
@param fullyQualifiedName Fully qualified name of the attribute for the third-party payment workflow.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteThirdPartyPaymentWorkflow"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/settings/checkout/PaymentSettingsUrl.java#L55-L60 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/orders/DigitalPackageUrl.java | DigitalPackageUrl.getAvailableDigitalPackageFulfillmentActionsUrl | public static MozuUrl getAvailableDigitalPackageFulfillmentActionsUrl(String digitalPackageId, String orderId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/digitalpackages/{digitalPackageId}/actions");
formatter.formatUrl("digitalPackageId", digitalPackageId);
formatter.formatUrl("orderId", orderId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getAvailableDigitalPackageFulfillmentActionsUrl(String digitalPackageId, String orderId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/digitalpackages/{digitalPackageId}/actions");
formatter.formatUrl("digitalPackageId", digitalPackageId);
formatter.formatUrl("orderId", orderId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getAvailableDigitalPackageFulfillmentActionsUrl",
"(",
"String",
"digitalPackageId",
",",
"String",
"orderId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/orders/{orderId}/digitalpackages/{digitalPackage... | Get Resource Url for GetAvailableDigitalPackageFulfillmentActions
@param digitalPackageId This parameter supplies package ID to get fulfillment actions for the digital package.
@param orderId Unique identifier of the order.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetAvailableDigitalPackageFulfillmentActions"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/orders/DigitalPackageUrl.java#L22-L28 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/orders/DigitalPackageUrl.java | DigitalPackageUrl.getDigitalPackageUrl | public static MozuUrl getDigitalPackageUrl(String digitalPackageId, String orderId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/digitalpackages/{digitalPackageId}?responseFields={responseFields}");
formatter.formatUrl("digitalPackageId", digitalPackageId);
formatter.formatUrl("orderId", orderId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getDigitalPackageUrl(String digitalPackageId, String orderId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/orders/{orderId}/digitalpackages/{digitalPackageId}?responseFields={responseFields}");
formatter.formatUrl("digitalPackageId", digitalPackageId);
formatter.formatUrl("orderId", orderId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getDigitalPackageUrl",
"(",
"String",
"digitalPackageId",
",",
"String",
"orderId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/orders/{orderId}/digitalpackages/{di... | Get Resource Url for GetDigitalPackage
@param digitalPackageId This parameter supplies package ID to get fulfillment actions for the digital package.
@param orderId Unique identifier of the order.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetDigitalPackage"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/orders/DigitalPackageUrl.java#L37-L44 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.registerReporter | @Cmd
public Reporter registerReporter(final Reporter reporter) {
injector.injectMembers(reporter);
reporters.add(reporter);
return reporter;
} | java | @Cmd
public Reporter registerReporter(final Reporter reporter) {
injector.injectMembers(reporter);
reporters.add(reporter);
return reporter;
} | [
"@",
"Cmd",
"public",
"Reporter",
"registerReporter",
"(",
"final",
"Reporter",
"reporter",
")",
"{",
"injector",
".",
"injectMembers",
"(",
"reporter",
")",
";",
"reporters",
".",
"add",
"(",
"reporter",
")",
";",
"return",
"reporter",
";",
"}"
] | Registers a reporter.
@param reporter
the reporter | [
"Registers",
"a",
"reporter",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L171-L176 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.chooseFile | @Cmd
public File chooseFile(final String fileKey) {
log.debug("Opening file chooser dialog");
JFileChooser fileChooser = new JFileChooser(System.getProperty(JFunkConstants.USER_DIR));
fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
fileChooser.setPreferredSize(new Dimension(600, 326));
int fileChooserResult = fileChooser.showOpenDialog(null);
if (fileChooserResult == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
String filename = file.toString();
log.info("Assigning file path '{}' to property '{}'", filename, fileKey);
config.put(fileKey, filename);
return file;
}
log.error("No file or directory was chosen, execution will abort");
throw new IllegalArgumentException("No file or directory was chosen");
} | java | @Cmd
public File chooseFile(final String fileKey) {
log.debug("Opening file chooser dialog");
JFileChooser fileChooser = new JFileChooser(System.getProperty(JFunkConstants.USER_DIR));
fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
fileChooser.setPreferredSize(new Dimension(600, 326));
int fileChooserResult = fileChooser.showOpenDialog(null);
if (fileChooserResult == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
String filename = file.toString();
log.info("Assigning file path '{}' to property '{}'", filename, fileKey);
config.put(fileKey, filename);
return file;
}
log.error("No file or directory was chosen, execution will abort");
throw new IllegalArgumentException("No file or directory was chosen");
} | [
"@",
"Cmd",
"public",
"File",
"chooseFile",
"(",
"final",
"String",
"fileKey",
")",
"{",
"log",
".",
"debug",
"(",
"\"Opening file chooser dialog\"",
")",
";",
"JFileChooser",
"fileChooser",
"=",
"new",
"JFileChooser",
"(",
"System",
".",
"getProperty",
"(",
"... | Opens a file chooser dialog which can then be used to choose a file or directory and assign
the path of the chosen object to a variable. The name of the variable must be passed as a
parameter.
@param fileKey
the key the selected file path is stored under in the configuration
@return the chosen file | [
"Opens",
"a",
"file",
"chooser",
"dialog",
"which",
"can",
"then",
"be",
"used",
"to",
"choose",
"a",
"file",
"or",
"directory",
"and",
"assign",
"the",
"path",
"of",
"the",
"chosen",
"object",
"to",
"a",
"variable",
".",
"The",
"name",
"of",
"the",
"v... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L196-L214 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.chooseRandom | @Cmd
public String chooseRandom(final String propertyKey, final List<String> randomValues) {
Randomizable<String> choice = new RandomCollection<>(random, randomValues);
String currentValue = choice.get();
if (log.isDebugEnabled()) {
log.debug("Chosen value: " + currentValue);
}
currentValue = resolveProperty(currentValue);
config.put(propertyKey, currentValue);
if (log.isDebugEnabled()) {
log.debug("... value for '{}' was set to {}", propertyKey, currentValue);
}
return currentValue;
} | java | @Cmd
public String chooseRandom(final String propertyKey, final List<String> randomValues) {
Randomizable<String> choice = new RandomCollection<>(random, randomValues);
String currentValue = choice.get();
if (log.isDebugEnabled()) {
log.debug("Chosen value: " + currentValue);
}
currentValue = resolveProperty(currentValue);
config.put(propertyKey, currentValue);
if (log.isDebugEnabled()) {
log.debug("... value for '{}' was set to {}", propertyKey, currentValue);
}
return currentValue;
} | [
"@",
"Cmd",
"public",
"String",
"chooseRandom",
"(",
"final",
"String",
"propertyKey",
",",
"final",
"List",
"<",
"String",
">",
"randomValues",
")",
"{",
"Randomizable",
"<",
"String",
">",
"choice",
"=",
"new",
"RandomCollection",
"<>",
"(",
"random",
",",... | Randomly selects an item from a list of Strings. List items may contain placeholder tokens.
The result is stored in the configuration under the specified key and also returned by this
method.
@param propertyKey
the property key under which to store the result
@param randomValues
the list of strings
@return a randomly chosen string from the list | [
"Randomly",
"selects",
"an",
"item",
"from",
"a",
"list",
"of",
"Strings",
".",
"List",
"items",
"may",
"contain",
"placeholder",
"tokens",
".",
"The",
"result",
"is",
"stored",
"in",
"the",
"configuration",
"under",
"the",
"specified",
"key",
"and",
"also",... | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L227-L240 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.module | @Cmd
public void module(final String moduleName, final Map<?, ?> attributes, final Closure<Void> closure) {
moduleBuilderProvider.get().invokeMethod("module", newArrayList(moduleName, attributes, closure));
} | java | @Cmd
public void module(final String moduleName, final Map<?, ?> attributes, final Closure<Void> closure) {
moduleBuilderProvider.get().invokeMethod("module", newArrayList(moduleName, attributes, closure));
} | [
"@",
"Cmd",
"public",
"void",
"module",
"(",
"final",
"String",
"moduleName",
",",
"final",
"Map",
"<",
"?",
",",
"?",
">",
"attributes",
",",
"final",
"Closure",
"<",
"Void",
">",
"closure",
")",
"{",
"moduleBuilderProvider",
".",
"get",
"(",
")",
"."... | Creates and runs a dynamic script module.
@param moduleName
the name of the module
@param attributes
a map of module attributes; the only attribute that is evaluated is "dataSetKey"
@param closure
the Groovy closure containing the logic to be executed within the script module | [
"Creates",
"and",
"runs",
"a",
"dynamic",
"script",
"module",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L389-L392 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.onError | @Cmd
public void onError(final Closure<Void> closure) {
int errorCount = errors.size();
if (errorCount > 0) {
log.info(errorCount + " error" + (errorCount == 1 ? "" : "s") + " in list --> executing block");
closure.call();
log.info("Finished OnError block");
} else {
log.info("No errors in list --> skipping block");
}
} | java | @Cmd
public void onError(final Closure<Void> closure) {
int errorCount = errors.size();
if (errorCount > 0) {
log.info(errorCount + " error" + (errorCount == 1 ? "" : "s") + " in list --> executing block");
closure.call();
log.info("Finished OnError block");
} else {
log.info("No errors in list --> skipping block");
}
} | [
"@",
"Cmd",
"public",
"void",
"onError",
"(",
"final",
"Closure",
"<",
"Void",
">",
"closure",
")",
"{",
"int",
"errorCount",
"=",
"errors",
".",
"size",
"(",
")",
";",
"if",
"(",
"errorCount",
">",
"0",
")",
"{",
"log",
".",
"info",
"(",
"errorCou... | Executes the specified closure if at least one exception had previously been recorded in the
currently executing script.
@param closure
the {@link Closure} representing a Groovy block | [
"Executes",
"the",
"specified",
"closure",
"if",
"at",
"least",
"one",
"exception",
"had",
"previously",
"been",
"recorded",
"in",
"the",
"currently",
"executing",
"script",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L401-L411 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.optional | @Cmd
public void optional(final Closure<Void> closure) {
log.info("Executing optional block ...");
try {
closure.call();
} catch (final Exception ex) {
log.error("Exception executing optional block: " + ex.getMessage(), ex);
errors.add(ex);
} catch (AssertionError err) {
log.error("Assertion failed executing optional block: " + err.getMessage(), err);
errors.add(err);
}
log.info("... finished execution of optional block");
} | java | @Cmd
public void optional(final Closure<Void> closure) {
log.info("Executing optional block ...");
try {
closure.call();
} catch (final Exception ex) {
log.error("Exception executing optional block: " + ex.getMessage(), ex);
errors.add(ex);
} catch (AssertionError err) {
log.error("Assertion failed executing optional block: " + err.getMessage(), err);
errors.add(err);
}
log.info("... finished execution of optional block");
} | [
"@",
"Cmd",
"public",
"void",
"optional",
"(",
"final",
"Closure",
"<",
"Void",
">",
"closure",
")",
"{",
"log",
".",
"info",
"(",
"\"Executing optional block ...\"",
")",
";",
"try",
"{",
"closure",
".",
"call",
"(",
")",
";",
"}",
"catch",
"(",
"fina... | Runs the specified closure catching any exception that might occur during execution.
@param closure
the {@link Closure} representing a Groovy block | [
"Runs",
"the",
"specified",
"closure",
"catching",
"any",
"exception",
"that",
"might",
"occur",
"during",
"execution",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L419-L432 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.processCsvFile | @Cmd
public void processCsvFile(final String csvFile, final String delimiter, final char quoteChar, final Charset charset,
final Closure<Void> closure) {
File f = new File(csvFile);
try {
config.extractFromArchive(f, true);
checkState(f.exists(), "CSV file not found: " + f);
Reader reader = Files.newReader(f, charset == null ? defaultCharset : charset);
csvDataProcessor.processFile(reader, delimiter, quoteChar, closure);
} catch (IOException ex) {
throw new IllegalStateException("Error reading CSV file: " + f, ex);
}
} | java | @Cmd
public void processCsvFile(final String csvFile, final String delimiter, final char quoteChar, final Charset charset,
final Closure<Void> closure) {
File f = new File(csvFile);
try {
config.extractFromArchive(f, true);
checkState(f.exists(), "CSV file not found: " + f);
Reader reader = Files.newReader(f, charset == null ? defaultCharset : charset);
csvDataProcessor.processFile(reader, delimiter, quoteChar, closure);
} catch (IOException ex) {
throw new IllegalStateException("Error reading CSV file: " + f, ex);
}
} | [
"@",
"Cmd",
"public",
"void",
"processCsvFile",
"(",
"final",
"String",
"csvFile",
",",
"final",
"String",
"delimiter",
",",
"final",
"char",
"quoteChar",
",",
"final",
"Charset",
"charset",
",",
"final",
"Closure",
"<",
"Void",
">",
"closure",
")",
"{",
"... | Processes a CSV file.
@param csvFile
the file
@param delimiter
the
@param quoteChar
the quote character ('\0' for no quoting)
@param charset
the character set
@param closure
the {@link Closure} representing a Groovy block | [
"Processes",
"a",
"CSV",
"file",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L448-L460 | train |
mgm-tp/jfunk | jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java | ScriptContext.prompt | @Cmd
public String prompt(final String configKey, final String message) {
System.out.print(resolveProperty(message) + " "); //NOSONAR
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
try {
String value = StringUtils.trim(in.readLine());
config.put(configKey, value);
return value;
// Stream nicht schliessen
} catch (IOException ex) {
throw new IllegalStateException(ex);
}
} | java | @Cmd
public String prompt(final String configKey, final String message) {
System.out.print(resolveProperty(message) + " "); //NOSONAR
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
try {
String value = StringUtils.trim(in.readLine());
config.put(configKey, value);
return value;
// Stream nicht schliessen
} catch (IOException ex) {
throw new IllegalStateException(ex);
}
} | [
"@",
"Cmd",
"public",
"String",
"prompt",
"(",
"final",
"String",
"configKey",
",",
"final",
"String",
"message",
")",
"{",
"System",
".",
"out",
".",
"print",
"(",
"resolveProperty",
"(",
"message",
")",
"+",
"\" \"",
")",
";",
"//NOSONAR",
"BufferedReade... | Prompts for closure-line input. the input is stored in the configuration under the specified
key.
@param configKey
the key for storing the input in the configuration
@param message
the prompt message
@return the input | [
"Prompts",
"for",
"closure",
"-",
"line",
"input",
".",
"the",
"input",
"is",
"stored",
"in",
"the",
"configuration",
"under",
"the",
"specified",
"key",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-core/src/main/java/com/mgmtp/jfunk/core/scripting/ScriptContext.java#L472-L484 | train |
mgm-tp/jfunk | jfunk-web/src/main/java/com/mgmtp/jfunk/web/util/Rectangle.java | Rectangle.intersection | public Rectangle intersection(Rectangle other) {
int left = Math.max(this.left, other.left);
int top = Math.max(this.top, other.top);
int right = Math.min(this.right, other.right);
int bottom = Math.min(this.bottom, other.bottom);
if (right >= left && bottom >= top) {
int height = bottom - top;
int width = right - left;
return new Rectangle(top, left, bottom, right, width, height);
} else {
return null;
}
} | java | public Rectangle intersection(Rectangle other) {
int left = Math.max(this.left, other.left);
int top = Math.max(this.top, other.top);
int right = Math.min(this.right, other.right);
int bottom = Math.min(this.bottom, other.bottom);
if (right >= left && bottom >= top) {
int height = bottom - top;
int width = right - left;
return new Rectangle(top, left, bottom, right, width, height);
} else {
return null;
}
} | [
"public",
"Rectangle",
"intersection",
"(",
"Rectangle",
"other",
")",
"{",
"int",
"left",
"=",
"Math",
".",
"max",
"(",
"this",
".",
"left",
",",
"other",
".",
"left",
")",
";",
"int",
"top",
"=",
"Math",
".",
"max",
"(",
"this",
".",
"top",
",",
... | Returns the intersection with the other rectangle or null if the two rectangles do not intersect.
@param other the other rectangle.
@return intersection rectangle or null. | [
"Returns",
"the",
"intersection",
"with",
"the",
"other",
"rectangle",
"or",
"null",
"if",
"the",
"two",
"rectangles",
"do",
"not",
"intersect",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-web/src/main/java/com/mgmtp/jfunk/web/util/Rectangle.java#L53-L65 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/ChannelUrl.java | ChannelUrl.deleteChannelUrl | public static MozuUrl deleteChannelUrl(String code)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/channels/{code}");
formatter.formatUrl("code", code);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteChannelUrl(String code)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/channels/{code}");
formatter.formatUrl("code", code);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteChannelUrl",
"(",
"String",
"code",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/channels/{code}\"",
")",
";",
"formatter",
".",
"formatUrl",
"(",
"\"code\"",
",",
"code",
")",
";",
... | Get Resource Url for DeleteChannel
@param code User-defined code that uniqely identifies the channel group.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteChannel"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/ChannelUrl.java#L81-L86 | train |
mgm-tp/jfunk | jfunk-common/src/main/java/com/mgmtp/jfunk/common/util/MemoryInfo.java | MemoryInfo.getMemoryInfo | public static String getMemoryInfo(final Unit unit) {
final long[] memory = getMemoryInfo();
for (final Type type : Type.values()) {
memory[type.ordinal()] /= unit.getDenominator();
}
final StringBuilder sb = new StringBuilder(100);
sb.append("Memory (free/total/max): ");
sb.append(memory[Type.FREE.ordinal()]);
sb.append(unit.getUnitString());
sb.append("/");
sb.append(memory[Type.TOTAL.ordinal()]);
sb.append(unit.getUnitString());
sb.append("/");
sb.append(memory[Type.MAX.ordinal()]);
sb.append(unit.getUnitString());
return sb.toString();
} | java | public static String getMemoryInfo(final Unit unit) {
final long[] memory = getMemoryInfo();
for (final Type type : Type.values()) {
memory[type.ordinal()] /= unit.getDenominator();
}
final StringBuilder sb = new StringBuilder(100);
sb.append("Memory (free/total/max): ");
sb.append(memory[Type.FREE.ordinal()]);
sb.append(unit.getUnitString());
sb.append("/");
sb.append(memory[Type.TOTAL.ordinal()]);
sb.append(unit.getUnitString());
sb.append("/");
sb.append(memory[Type.MAX.ordinal()]);
sb.append(unit.getUnitString());
return sb.toString();
} | [
"public",
"static",
"String",
"getMemoryInfo",
"(",
"final",
"Unit",
"unit",
")",
"{",
"final",
"long",
"[",
"]",
"memory",
"=",
"getMemoryInfo",
"(",
")",
";",
"for",
"(",
"final",
"Type",
"type",
":",
"Type",
".",
"values",
"(",
")",
")",
"{",
"mem... | Get information about the current memory status of the JVM.
@param unit
used for formatting. Valid values are:
<ul>
<li>{@link Unit#BYTES}</li>
<li>{@link Unit#KILOBYTES}</li>
<li>{@link Unit#KIBIBYTES}</li>
<li>{@link Unit#MEGABYTES}</li>
<li>{@link Unit#MEBIBYTES}</li>
</ul>
If no value is given, {@link Unit#BYTES} will be used. No decimal place will be
calculated, plain integer values are returned.
@return a string with the current memory information | [
"Get",
"information",
"about",
"the",
"current",
"memory",
"status",
"of",
"the",
"JVM",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-common/src/main/java/com/mgmtp/jfunk/common/util/MemoryInfo.java#L126-L144 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java | DocumentUrl.transformDocumentContentUrl | public static MozuUrl transformDocumentContentUrl(String crop, String documentId, String documentListName, Integer height, Integer max, Integer maxHeight, Integer maxWidth, Integer quality, Integer width)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}/transform?width={width}&height={height}&maxWidth={maxWidth}&maxHeight={maxHeight}&crop={crop}&quality={quality}");
formatter.formatUrl("crop", crop);
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("height", height);
formatter.formatUrl("max", max);
formatter.formatUrl("maxHeight", maxHeight);
formatter.formatUrl("maxWidth", maxWidth);
formatter.formatUrl("quality", quality);
formatter.formatUrl("width", width);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl transformDocumentContentUrl(String crop, String documentId, String documentListName, Integer height, Integer max, Integer maxHeight, Integer maxWidth, Integer quality, Integer width)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}/transform?width={width}&height={height}&maxWidth={maxWidth}&maxHeight={maxHeight}&crop={crop}&quality={quality}");
formatter.formatUrl("crop", crop);
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("height", height);
formatter.formatUrl("max", max);
formatter.formatUrl("maxHeight", maxHeight);
formatter.formatUrl("maxWidth", maxWidth);
formatter.formatUrl("quality", quality);
formatter.formatUrl("width", width);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"transformDocumentContentUrl",
"(",
"String",
"crop",
",",
"String",
"documentId",
",",
"String",
"documentListName",
",",
"Integer",
"height",
",",
"Integer",
"max",
",",
"Integer",
"maxHeight",
",",
"Integer",
"maxWidth",
",",
"Int... | Get Resource Url for TransformDocumentContent
@param crop Crops the image based on the specified coordinates. The reference point for positive coordinates is the top-left corner of the image, and the reference point for negative coordinates is the bottom-right corner of the image.Usage: Example: removes 10 pixels from all edges of the image. leaves the image uncropped.
@param documentId Unique identifier for a document, used by content and document calls. Document IDs are associated with document types, document type lists, sites, and tenants.
@param documentListName Name of content documentListName to delete
@param height Specifies an exact height dimension for the image, in pixels.
@param max Specifies a pixel limitation for the largest side of an image.
@param maxHeight Specifies a pixel limitation for the height of the image, preserving the aspect ratio if the image needs resizing.
@param maxWidth Specifies a pixel limitation for the width of the image, preserving the aspect ratio if the image needs resizing.
@param quality Adjusts the image compression. Accepts values from 0-100, where 100 = highest quality, least compression.
@param width Specifies an exact width dimension for the image, in pixels.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"TransformDocumentContent"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java#L43-L56 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java | DocumentUrl.getDocumentUrl | public static MozuUrl getDocumentUrl(String documentId, String documentListName, Boolean includeInactive, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}?includeInactive={includeInactive}&responseFields={responseFields}");
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("includeInactive", includeInactive);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getDocumentUrl(String documentId, String documentListName, Boolean includeInactive, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}?includeInactive={includeInactive}&responseFields={responseFields}");
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("includeInactive", includeInactive);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getDocumentUrl",
"(",
"String",
"documentId",
",",
"String",
"documentListName",
",",
"Boolean",
"includeInactive",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/content... | Get Resource Url for GetDocument
@param documentId Unique identifier for a document, used by content and document calls. Document IDs are associated with document types, document type lists, sites, and tenants.
@param documentListName Name of content documentListName to delete
@param includeInactive Include inactive content.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetDocument"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java#L66-L74 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java | DocumentUrl.updateDocumentUrl | public static MozuUrl updateDocumentUrl(String documentId, String documentListName, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}?responseFields={responseFields}");
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl updateDocumentUrl(String documentId, String documentListName, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}?responseFields={responseFields}");
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"updateDocumentUrl",
"(",
"String",
"documentId",
",",
"String",
"documentListName",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/content/documentlists/{documentListName}/docu... | Get Resource Url for UpdateDocument
@param documentId Unique identifier for a document, used by content and document calls. Document IDs are associated with document types, document type lists, sites, and tenants.
@param documentListName Name of content documentListName to delete
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"UpdateDocument"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java#L135-L142 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java | DocumentUrl.deleteDocumentUrl | public static MozuUrl deleteDocumentUrl(String documentId, String documentListName)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}");
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteDocumentUrl(String documentId, String documentListName)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/documents/{documentId}");
formatter.formatUrl("documentId", documentId);
formatter.formatUrl("documentListName", documentListName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteDocumentUrl",
"(",
"String",
"documentId",
",",
"String",
"documentListName",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/content/documentlists/{documentListName}/documents/{documentId}\"",
")",
";",
... | Get Resource Url for DeleteDocument
@param documentId Unique identifier for a document, used by content and document calls. Document IDs are associated with document types, document type lists, sites, and tenants.
@param documentListName Name of content documentListName to delete
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteDocument"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/content/documentlists/DocumentUrl.java#L150-L156 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/couponsets/CouponUrl.java | CouponUrl.deleteCouponUrl | public static MozuUrl deleteCouponUrl(String couponCode, String couponSetCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/couponsets/{couponSetCode}/couponcodes/{couponCode}");
formatter.formatUrl("couponCode", couponCode);
formatter.formatUrl("couponSetCode", couponSetCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteCouponUrl(String couponCode, String couponSetCode)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/admin/couponsets/{couponSetCode}/couponcodes/{couponCode}");
formatter.formatUrl("couponCode", couponCode);
formatter.formatUrl("couponSetCode", couponSetCode);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteCouponUrl",
"(",
"String",
"couponCode",
",",
"String",
"couponSetCode",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/admin/couponsets/{couponSetCode}/couponcodes/{couponCode}\"",
")",
"... | Get Resource Url for DeleteCoupon
@param couponCode Code associated with the coupon to remove from the cart.
@param couponSetCode The unique identifier of the coupon set that the coupon belongs to.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteCoupon"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/admin/couponsets/CouponUrl.java#L88-L94 | train |
sualeh/pointlocation6709 | src/main/java/us/fatehi/pointlocation6709/Version.java | Version.about | public static String about()
{
final StringBuffer about = new StringBuffer();
about.append(getProductName()).append(" ").append(getVersion())
.append("\n").append("\u00A9 2007-2014 Sualeh Fatehi"); //$NON-NLS-2$
return new String(about);
} | java | public static String about()
{
final StringBuffer about = new StringBuffer();
about.append(getProductName()).append(" ").append(getVersion())
.append("\n").append("\u00A9 2007-2014 Sualeh Fatehi"); //$NON-NLS-2$
return new String(about);
} | [
"public",
"static",
"String",
"about",
"(",
")",
"{",
"final",
"StringBuffer",
"about",
"=",
"new",
"StringBuffer",
"(",
")",
";",
"about",
".",
"append",
"(",
"getProductName",
"(",
")",
")",
".",
"append",
"(",
"\" \"",
")",
".",
"append",
"(",
"getV... | Information about this product.
@return Information about this product. | [
"Information",
"about",
"this",
"product",
"."
] | c0c186c2518f41e3fe174920cacd5c0d082d01a0 | https://github.com/sualeh/pointlocation6709/blob/c0c186c2518f41e3fe174920cacd5c0d082d01a0/src/main/java/us/fatehi/pointlocation6709/Version.java#L43-L49 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/HighScoringPair.java | HighScoringPair.valueOf | public static HighScoringPair valueOf(final String value) {
checkNotNull(value);
List<String> tokens = Splitter.on("\t").trimResults().splitToList(value);
if (tokens.size() != 12) {
throw new IllegalArgumentException("value must have twelve fields");
}
String source = tokens.get(0).trim();
String target = tokens.get(1).trim();
double percentIdentity = Double.parseDouble(tokens.get(2).trim());
long alignmentLength = Long.parseLong(tokens.get(3).trim());
int mismatches = Integer.parseInt(tokens.get(4).trim());
int gapOpens = Integer.parseInt(tokens.get(5).trim());
long sourceStart = Long.parseLong(tokens.get(6).trim());
long sourceEnd = Long.parseLong(tokens.get(7).trim());
long targetStart = Long.parseLong(tokens.get(8).trim());
long targetEnd = Long.parseLong(tokens.get(9).trim());
double evalue = Double.parseDouble(tokens.get(10).trim());
double bitScore = Double.parseDouble(tokens.get(11).trim());
return new HighScoringPair(source, target, percentIdentity, alignmentLength, mismatches, gapOpens, sourceStart, sourceEnd, targetStart, targetEnd, evalue, bitScore);
} | java | public static HighScoringPair valueOf(final String value) {
checkNotNull(value);
List<String> tokens = Splitter.on("\t").trimResults().splitToList(value);
if (tokens.size() != 12) {
throw new IllegalArgumentException("value must have twelve fields");
}
String source = tokens.get(0).trim();
String target = tokens.get(1).trim();
double percentIdentity = Double.parseDouble(tokens.get(2).trim());
long alignmentLength = Long.parseLong(tokens.get(3).trim());
int mismatches = Integer.parseInt(tokens.get(4).trim());
int gapOpens = Integer.parseInt(tokens.get(5).trim());
long sourceStart = Long.parseLong(tokens.get(6).trim());
long sourceEnd = Long.parseLong(tokens.get(7).trim());
long targetStart = Long.parseLong(tokens.get(8).trim());
long targetEnd = Long.parseLong(tokens.get(9).trim());
double evalue = Double.parseDouble(tokens.get(10).trim());
double bitScore = Double.parseDouble(tokens.get(11).trim());
return new HighScoringPair(source, target, percentIdentity, alignmentLength, mismatches, gapOpens, sourceStart, sourceEnd, targetStart, targetEnd, evalue, bitScore);
} | [
"public",
"static",
"HighScoringPair",
"valueOf",
"(",
"final",
"String",
"value",
")",
"{",
"checkNotNull",
"(",
"value",
")",
";",
"List",
"<",
"String",
">",
"tokens",
"=",
"Splitter",
".",
"on",
"(",
"\"\\t\"",
")",
".",
"trimResults",
"(",
")",
".",... | Return a new high scoring pair parsed from the specified value.
@param value value to parse, must not be null
@return a new high scoring pair parsed from the specified value
@throws IllegalArgumentException if the value is not valid high scoring pair format
@throws NumberFormatException if a number valued field cannot be parsed as a number | [
"Return",
"a",
"new",
"high",
"scoring",
"pair",
"parsed",
"from",
"the",
"specified",
"value",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/HighScoringPair.java#L241-L261 | train |
mgm-tp/jfunk | jfunk-common/src/main/java/com/mgmtp/jfunk/common/config/StackedScope.java | StackedScope.exitScope | @Override
public void exitScope() {
Map<Key<?>, Object> scopeMap = scopeStackCache.get().peek();
performDisposal(scopeMap);
scopeStackCache.get().pop();
log.debug("Exited scope.");
} | java | @Override
public void exitScope() {
Map<Key<?>, Object> scopeMap = scopeStackCache.get().peek();
performDisposal(scopeMap);
scopeStackCache.get().pop();
log.debug("Exited scope.");
} | [
"@",
"Override",
"public",
"void",
"exitScope",
"(",
")",
"{",
"Map",
"<",
"Key",
"<",
"?",
">",
",",
"Object",
">",
"scopeMap",
"=",
"scopeStackCache",
".",
"get",
"(",
")",
".",
"peek",
"(",
")",
";",
"performDisposal",
"(",
"scopeMap",
")",
";",
... | Exists the scope context of the current thread by popping the context's map off the internal
stack. | [
"Exists",
"the",
"scope",
"context",
"of",
"the",
"current",
"thread",
"by",
"popping",
"the",
"context",
"s",
"map",
"off",
"the",
"internal",
"stack",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-common/src/main/java/com/mgmtp/jfunk/common/config/StackedScope.java#L78-L84 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/carts/ChangeMessageUrl.java | ChangeMessageUrl.removeAllMessagesUrl | public static MozuUrl removeAllMessagesUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/messages");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl removeAllMessagesUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/messages");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"removeAllMessagesUrl",
"(",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/current/messages\"",
")",
";",
"return",
"new",
"MozuUrl",
"(",
"formatter",
".",
"getResourceUrl",
"(",
")",
"... | Get Resource Url for RemoveAllMessages
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"RemoveAllMessages"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/carts/ChangeMessageUrl.java#L32-L36 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/carts/ChangeMessageUrl.java | ChangeMessageUrl.removeMessageUrl | public static MozuUrl removeMessageUrl(String messageId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/messages/{messageId}");
formatter.formatUrl("messageId", messageId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl removeMessageUrl(String messageId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current/messages/{messageId}");
formatter.formatUrl("messageId", messageId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"removeMessageUrl",
"(",
"String",
"messageId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/current/messages/{messageId}\"",
")",
";",
"formatter",
".",
"formatUrl",
"(",
"\"messageId\"",
... | Get Resource Url for RemoveMessage
@param messageId Identifier of the message to remove from the cart.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"RemoveMessage"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/carts/ChangeMessageUrl.java#L43-L48 | train |
mgm-tp/jfunk | jfunk-common/src/main/java/com/mgmtp/jfunk/common/random/RandomCollection.java | RandomCollection.get | @Override
public E get() {
if (originalElements.isEmpty()) {
return null;
}
if (!priorityElements.isEmpty()) {
return priorityElements.remove(0);
}
if (currentElements.size() <= originalElements.size()) {
currentElements.addAll(originalElements);
}
int index = random.getInt(currentElements.size() - 1);
return currentElements.remove(index);
} | java | @Override
public E get() {
if (originalElements.isEmpty()) {
return null;
}
if (!priorityElements.isEmpty()) {
return priorityElements.remove(0);
}
if (currentElements.size() <= originalElements.size()) {
currentElements.addAll(originalElements);
}
int index = random.getInt(currentElements.size() - 1);
return currentElements.remove(index);
} | [
"@",
"Override",
"public",
"E",
"get",
"(",
")",
"{",
"if",
"(",
"originalElements",
".",
"isEmpty",
"(",
")",
")",
"{",
"return",
"null",
";",
"}",
"if",
"(",
"!",
"priorityElements",
".",
"isEmpty",
"(",
")",
")",
"{",
"return",
"priorityElements",
... | Returns the next random element.
@return if the original list was empty, {@code null} is returned | [
"Returns",
"the",
"next",
"random",
"element",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-common/src/main/java/com/mgmtp/jfunk/common/random/RandomCollection.java#L92-L105 | train |
mgm-tp/jfunk | jfunk-common/src/main/java/com/mgmtp/jfunk/common/random/RandomCollection.java | RandomCollection.reset | @Override
public void reset() {
this.priorityElements = Lists.newArrayList(originalElements);
Collections.shuffle(priorityElements);
this.currentElements = Lists.newArrayListWithExpectedSize(2 * originalElements.size());
this.currentElements.addAll(originalElements);
} | java | @Override
public void reset() {
this.priorityElements = Lists.newArrayList(originalElements);
Collections.shuffle(priorityElements);
this.currentElements = Lists.newArrayListWithExpectedSize(2 * originalElements.size());
this.currentElements.addAll(originalElements);
} | [
"@",
"Override",
"public",
"void",
"reset",
"(",
")",
"{",
"this",
".",
"priorityElements",
"=",
"Lists",
".",
"newArrayList",
"(",
"originalElements",
")",
";",
"Collections",
".",
"shuffle",
"(",
"priorityElements",
")",
";",
"this",
".",
"currentElements",
... | Resets this object so it behaves like a newly constructed instance. | [
"Resets",
"this",
"object",
"so",
"it",
"behaves",
"like",
"a",
"newly",
"constructed",
"instance",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-common/src/main/java/com/mgmtp/jfunk/common/random/RandomCollection.java#L118-L124 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/WishlistUrl.java | WishlistUrl.getWishlistByNameUrl | public static MozuUrl getWishlistByNameUrl(Integer customerAccountId, String responseFields, String wishlistName)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/wishlists/customers/{customerAccountId}/{wishlistName}?responseFields={responseFields}");
formatter.formatUrl("customerAccountId", customerAccountId);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("wishlistName", wishlistName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getWishlistByNameUrl(Integer customerAccountId, String responseFields, String wishlistName)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/wishlists/customers/{customerAccountId}/{wishlistName}?responseFields={responseFields}");
formatter.formatUrl("customerAccountId", customerAccountId);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("wishlistName", wishlistName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getWishlistByNameUrl",
"(",
"Integer",
"customerAccountId",
",",
"String",
"responseFields",
",",
"String",
"wishlistName",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/wishlists/customers/{customer... | Get Resource Url for GetWishlistByName
@param customerAccountId The unique identifier of the customer account for which to retrieve wish lists.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param wishlistName The name of the wish list to retrieve.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetWishlistByName"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/WishlistUrl.java#L61-L68 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/WishlistUrl.java | WishlistUrl.updateWishlistUrl | public static MozuUrl updateWishlistUrl(String responseFields, String wishlistId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/wishlists/{wishlistId}?responseFields={responseFields}");
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("wishlistId", wishlistId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl updateWishlistUrl(String responseFields, String wishlistId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/wishlists/{wishlistId}?responseFields={responseFields}");
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("wishlistId", wishlistId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"updateWishlistUrl",
"(",
"String",
"responseFields",
",",
"String",
"wishlistId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/wishlists/{wishlistId}?responseFields={responseFields}\"",
")",
";",
"f... | Get Resource Url for UpdateWishlist
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param wishlistId Unique identifier of the wish list.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"UpdateWishlist"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/WishlistUrl.java#L88-L94 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/platform/InstalledApplicationsUrl.java | InstalledApplicationsUrl.getApplicationUrl | public static MozuUrl getApplicationUrl(String appId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/platform/applications/{appId}?responseFields={responseFields}");
formatter.formatUrl("appId", appId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getApplicationUrl(String appId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/platform/applications/{appId}?responseFields={responseFields}");
formatter.formatUrl("appId", appId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getApplicationUrl",
"(",
"String",
"appId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/platform/applications/{appId}?responseFields={responseFields}\"",
")",
";",
"formatte... | Get Resource Url for GetApplication
@param appId appId parameter description DOCUMENT_HERE
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetApplication"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/platform/InstalledApplicationsUrl.java#L22-L28 | train |
thomasjungblut/tjungblut-math | src/de/jungblut/math/dense/DenseDoubleMatrix.java | DenseDoubleMatrix.getColumn | public double[] getColumn(int col) {
double[] column = new double[numRows];
int offset = translate(0, col, numRows);
for (int i = 0; i < column.length; i++) {
column[i] = matrix[offset + i];
}
return column;
} | java | public double[] getColumn(int col) {
double[] column = new double[numRows];
int offset = translate(0, col, numRows);
for (int i = 0; i < column.length; i++) {
column[i] = matrix[offset + i];
}
return column;
} | [
"public",
"double",
"[",
"]",
"getColumn",
"(",
"int",
"col",
")",
"{",
"double",
"[",
"]",
"column",
"=",
"new",
"double",
"[",
"numRows",
"]",
";",
"int",
"offset",
"=",
"translate",
"(",
"0",
",",
"col",
",",
"numRows",
")",
";",
"for",
"(",
"... | Gets a whole column of the matrix as a double array. | [
"Gets",
"a",
"whole",
"column",
"of",
"the",
"matrix",
"as",
"a",
"double",
"array",
"."
] | 4de5aa25f263d982a253be88aaf350b51cf3860d | https://github.com/thomasjungblut/tjungblut-math/blob/4de5aa25f263d982a253be88aaf350b51cf3860d/src/de/jungblut/math/dense/DenseDoubleMatrix.java#L223-L230 | train |
thomasjungblut/tjungblut-math | src/de/jungblut/math/dense/DenseDoubleMatrix.java | DenseDoubleMatrix.getRow | public double[] getRow(int row) {
double[] rowArray = new double[getColumnCount()];
for (int i = 0; i < getColumnCount(); i++) {
rowArray[i] = get(row, i);
}
return rowArray;
} | java | public double[] getRow(int row) {
double[] rowArray = new double[getColumnCount()];
for (int i = 0; i < getColumnCount(); i++) {
rowArray[i] = get(row, i);
}
return rowArray;
} | [
"public",
"double",
"[",
"]",
"getRow",
"(",
"int",
"row",
")",
"{",
"double",
"[",
"]",
"rowArray",
"=",
"new",
"double",
"[",
"getColumnCount",
"(",
")",
"]",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"getColumnCount",
"(",
")",
";"... | Get a single row of the matrix as a double array. | [
"Get",
"a",
"single",
"row",
"of",
"the",
"matrix",
"as",
"a",
"double",
"array",
"."
] | 4de5aa25f263d982a253be88aaf350b51cf3860d | https://github.com/thomasjungblut/tjungblut-math/blob/4de5aa25f263d982a253be88aaf350b51cf3860d/src/de/jungblut/math/dense/DenseDoubleMatrix.java#L257-L263 | train |
thomasjungblut/tjungblut-math | src/de/jungblut/math/dense/DenseDoubleMatrix.java | DenseDoubleMatrix.setRow | public void setRow(int row, double[] value) {
for (int i = 0; i < value.length; i++) {
this.matrix[translate(row, i, numRows)] = value[i];
}
} | java | public void setRow(int row, double[] value) {
for (int i = 0; i < value.length; i++) {
this.matrix[translate(row, i, numRows)] = value[i];
}
} | [
"public",
"void",
"setRow",
"(",
"int",
"row",
",",
"double",
"[",
"]",
"value",
")",
"{",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"value",
".",
"length",
";",
"i",
"++",
")",
"{",
"this",
".",
"matrix",
"[",
"translate",
"(",
"row",
... | Sets the row to a given double array. | [
"Sets",
"the",
"row",
"to",
"a",
"given",
"double",
"array",
"."
] | 4de5aa25f263d982a253be88aaf350b51cf3860d | https://github.com/thomasjungblut/tjungblut-math/blob/4de5aa25f263d982a253be88aaf350b51cf3860d/src/de/jungblut/math/dense/DenseDoubleMatrix.java#L283-L287 | train |
thomasjungblut/tjungblut-math | src/de/jungblut/math/dense/DenseDoubleMatrix.java | DenseDoubleMatrix.setColumn | public void setColumn(int col, double[] values) {
int offset = translate(0, col, numRows);
System.arraycopy(values, 0, matrix, offset, values.length);
} | java | public void setColumn(int col, double[] values) {
int offset = translate(0, col, numRows);
System.arraycopy(values, 0, matrix, offset, values.length);
} | [
"public",
"void",
"setColumn",
"(",
"int",
"col",
",",
"double",
"[",
"]",
"values",
")",
"{",
"int",
"offset",
"=",
"translate",
"(",
"0",
",",
"col",
",",
"numRows",
")",
";",
"System",
".",
"arraycopy",
"(",
"values",
",",
"0",
",",
"matrix",
",... | Sets the column to a given double array. | [
"Sets",
"the",
"column",
"to",
"a",
"given",
"double",
"array",
"."
] | 4de5aa25f263d982a253be88aaf350b51cf3860d | https://github.com/thomasjungblut/tjungblut-math/blob/4de5aa25f263d982a253be88aaf350b51cf3860d/src/de/jungblut/math/dense/DenseDoubleMatrix.java#L292-L295 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java | CartUrl.getCartUrl | public static MozuUrl getCartUrl(String cartId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/{cartId}?responseFields={responseFields}");
formatter.formatUrl("cartId", cartId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getCartUrl(String cartId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/{cartId}?responseFields={responseFields}");
formatter.formatUrl("cartId", cartId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getCartUrl",
"(",
"String",
"cartId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/{cartId}?responseFields={responseFields}\"",
")",
";",
"formatter",
".",
... | Get Resource Url for GetCart
@param cartId Identifier of the cart to delete.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetCart"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java#L22-L28 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java | CartUrl.getUserCartSummaryUrl | public static MozuUrl getUserCartSummaryUrl(String responseFields, String userId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/user/{userId}/summary?responseFields={responseFields}");
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("userId", userId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getUserCartSummaryUrl(String responseFields, String userId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/user/{userId}/summary?responseFields={responseFields}");
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("userId", userId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getUserCartSummaryUrl",
"(",
"String",
"responseFields",
",",
"String",
"userId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/user/{userId}/summary?responseFields={responseFields}\"",
")",
";",... | Get Resource Url for GetUserCartSummary
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param userId Unique identifier of the user whose tenant scopes you want to retrieve.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetUserCartSummary"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java#L60-L66 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java | CartUrl.rejectSuggestedDiscountUrl | public static MozuUrl rejectSuggestedDiscountUrl(String cartId, Integer discountId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/{cartId}/rejectautodiscount/{discountId}?responseFields={responseFields}");
formatter.formatUrl("cartId", cartId);
formatter.formatUrl("discountId", discountId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl rejectSuggestedDiscountUrl(String cartId, Integer discountId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/{cartId}/rejectautodiscount/{discountId}?responseFields={responseFields}");
formatter.formatUrl("cartId", cartId);
formatter.formatUrl("discountId", discountId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"rejectSuggestedDiscountUrl",
"(",
"String",
"cartId",
",",
"Integer",
"discountId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/{cartId}/rejectautodiscount/{d... | Get Resource Url for RejectSuggestedDiscount
@param cartId Identifier of the cart to delete.
@param discountId discountId parameter description DOCUMENT_HERE
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"RejectSuggestedDiscount"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java#L89-L96 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java | CartUrl.deleteCurrentCartUrl | public static MozuUrl deleteCurrentCartUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl deleteCurrentCartUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/carts/current");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"deleteCurrentCartUrl",
"(",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/carts/current\"",
")",
";",
"return",
"new",
"MozuUrl",
"(",
"formatter",
".",
"getResourceUrl",
"(",
")",
",",
"Mo... | Get Resource Url for DeleteCurrentCart
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"DeleteCurrentCart"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/commerce/CartUrl.java#L126-L130 | train |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/urls/content/documentlists/ViewUrl.java | ViewUrl.getViewDocumentsUrl | public static MozuUrl getViewDocumentsUrl(String documentListName, String filter, Boolean includeInactive, Integer pageSize, String responseFields, String sortBy, Integer startIndex, String viewName)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/views/{viewName}/documents?filter={filter}&sortBy={sortBy}&pageSize={pageSize}&startIndex={startIndex}&includeInactive={includeInactive}&responseFields={responseFields}");
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("filter", filter);
formatter.formatUrl("includeInactive", includeInactive);
formatter.formatUrl("pageSize", pageSize);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("sortBy", sortBy);
formatter.formatUrl("startIndex", startIndex);
formatter.formatUrl("viewName", viewName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getViewDocumentsUrl(String documentListName, String filter, Boolean includeInactive, Integer pageSize, String responseFields, String sortBy, Integer startIndex, String viewName)
{
UrlFormatter formatter = new UrlFormatter("/api/content/documentlists/{documentListName}/views/{viewName}/documents?filter={filter}&sortBy={sortBy}&pageSize={pageSize}&startIndex={startIndex}&includeInactive={includeInactive}&responseFields={responseFields}");
formatter.formatUrl("documentListName", documentListName);
formatter.formatUrl("filter", filter);
formatter.formatUrl("includeInactive", includeInactive);
formatter.formatUrl("pageSize", pageSize);
formatter.formatUrl("responseFields", responseFields);
formatter.formatUrl("sortBy", sortBy);
formatter.formatUrl("startIndex", startIndex);
formatter.formatUrl("viewName", viewName);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getViewDocumentsUrl",
"(",
"String",
"documentListName",
",",
"String",
"filter",
",",
"Boolean",
"includeInactive",
",",
"Integer",
"pageSize",
",",
"String",
"responseFields",
",",
"String",
"sortBy",
",",
"Integer",
"startIndex",
"... | Get Resource Url for GetViewDocuments
@param documentListName Name of content documentListName to delete
@param filter A set of filter expressions representing the search parameters for a query. This parameter is optional. Refer to [Sorting and Filtering](../../../../Developer/api-guides/sorting-filtering.htm) for a list of supported filters.
@param includeInactive Include inactive content.
@param pageSize When creating paged results from a query, this value indicates the zero-based offset in the complete result set where the returned entities begin. For example, with this parameter set to 25, to get the 51st through the 75th items, set startIndex to 50.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@param sortBy The element to sort the results by and the channel in which the results appear. Either ascending (a-z) or descending (z-a) channel. Optional. Refer to [Sorting and Filtering](../../../../Developer/api-guides/sorting-filtering.htm) for more information.
@param startIndex When creating paged results from a query, this value indicates the zero-based offset in the complete result set where the returned entities begin. For example, with pageSize set to 25, to get the 51st through the 75th items, set this parameter to 50.
@param viewName The name for a view. Views are used to render data in , such as document and entity lists. Each view includes a schema, format, name, ID, and associated data types to render.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetViewDocuments"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-javaasync-core/src/main/java/com/mozu/api/urls/content/documentlists/ViewUrl.java#L28-L40 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.checkClosedOpen | static void checkClosedOpen(final Range<Long> range) {
checkNotNull(range);
checkArgument(BoundType.CLOSED == range.lowerBoundType(), "range must be [closed, open), lower bound type was open");
checkArgument(BoundType.OPEN == range.upperBoundType(), "range must be [closed, open), upper bound type was closed");
} | java | static void checkClosedOpen(final Range<Long> range) {
checkNotNull(range);
checkArgument(BoundType.CLOSED == range.lowerBoundType(), "range must be [closed, open), lower bound type was open");
checkArgument(BoundType.OPEN == range.upperBoundType(), "range must be [closed, open), upper bound type was closed");
} | [
"static",
"void",
"checkClosedOpen",
"(",
"final",
"Range",
"<",
"Long",
">",
"range",
")",
"{",
"checkNotNull",
"(",
"range",
")",
";",
"checkArgument",
"(",
"BoundType",
".",
"CLOSED",
"==",
"range",
".",
"lowerBoundType",
"(",
")",
",",
"\"range must be [... | Confirm that the specified range is [closed, open).
@param range range to check, must not be null | [
"Confirm",
"that",
"the",
"specified",
"range",
"is",
"[",
"closed",
"open",
")",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L69-L73 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.length | public static long length(final Range<Long> range) {
checkClosedOpen(range);
return Math.max(0L, range.upperEndpoint() - range.lowerEndpoint());
} | java | public static long length(final Range<Long> range) {
checkClosedOpen(range);
return Math.max(0L, range.upperEndpoint() - range.lowerEndpoint());
} | [
"public",
"static",
"long",
"length",
"(",
"final",
"Range",
"<",
"Long",
">",
"range",
")",
"{",
"checkClosedOpen",
"(",
"range",
")",
";",
"return",
"Math",
".",
"max",
"(",
"0L",
",",
"range",
".",
"upperEndpoint",
"(",
")",
"-",
"range",
".",
"lo... | Return the length of the specified range.
@param range range, must not be null and must be [closed, open)
@return the length of the specified range | [
"Return",
"the",
"length",
"of",
"the",
"specified",
"range",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L81-L84 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.lengths | public static List<Long> lengths(final Iterable<Range<Long>> ranges) {
checkNotNull(ranges);
List<Long> lengths = new ArrayList<Long>();
for (Range<Long> range : ranges) {
lengths.add(length(range));
}
return lengths;
} | java | public static List<Long> lengths(final Iterable<Range<Long>> ranges) {
checkNotNull(ranges);
List<Long> lengths = new ArrayList<Long>();
for (Range<Long> range : ranges) {
lengths.add(length(range));
}
return lengths;
} | [
"public",
"static",
"List",
"<",
"Long",
">",
"lengths",
"(",
"final",
"Iterable",
"<",
"Range",
"<",
"Long",
">",
">",
"ranges",
")",
"{",
"checkNotNull",
"(",
"ranges",
")",
";",
"List",
"<",
"Long",
">",
"lengths",
"=",
"new",
"ArrayList",
"<",
"L... | Return the lengths of the specified ranges.
@param ranges ranges, must not be null, must not contain any null ranges, and all ranges must be [closed, open)
@return the lengths of the specified ranges | [
"Return",
"the",
"lengths",
"of",
"the",
"specified",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L92-L99 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.length | public static long length(final Iterable<Range<Long>> ranges) {
checkNotNull(ranges);
RangeSet<Long> rangeSet = TreeRangeSet.create();
for (Range<Long> range : ranges) {
rangeSet.add(range);
}
long length = 0L;
for (Range<Long> range : rangeSet.asRanges()) {
length += length(range);
}
return length;
} | java | public static long length(final Iterable<Range<Long>> ranges) {
checkNotNull(ranges);
RangeSet<Long> rangeSet = TreeRangeSet.create();
for (Range<Long> range : ranges) {
rangeSet.add(range);
}
long length = 0L;
for (Range<Long> range : rangeSet.asRanges()) {
length += length(range);
}
return length;
} | [
"public",
"static",
"long",
"length",
"(",
"final",
"Iterable",
"<",
"Range",
"<",
"Long",
">",
">",
"ranges",
")",
"{",
"checkNotNull",
"(",
"ranges",
")",
";",
"RangeSet",
"<",
"Long",
">",
"rangeSet",
"=",
"TreeRangeSet",
".",
"create",
"(",
")",
";... | Return the sum of lengths of the specified ranges, after merging overlapping ranges.
@param ranges ranges, must not be null, must not contain any null ranges, and all ranges must be [closed, open)
@return the sum of lengths of the specified ranges, after merging overlapping ranges | [
"Return",
"the",
"sum",
"of",
"lengths",
"of",
"the",
"specified",
"ranges",
"after",
"merging",
"overlapping",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L107-L118 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.count | public static int count(final Iterable<Range<Long>> ranges) {
int count = 0;
for (Range<Long> range : ranges) {
checkClosedOpen(range);
count++;
}
return count;
} | java | public static int count(final Iterable<Range<Long>> ranges) {
int count = 0;
for (Range<Long> range : ranges) {
checkClosedOpen(range);
count++;
}
return count;
} | [
"public",
"static",
"int",
"count",
"(",
"final",
"Iterable",
"<",
"Range",
"<",
"Long",
">",
">",
"ranges",
")",
"{",
"int",
"count",
"=",
"0",
";",
"for",
"(",
"Range",
"<",
"Long",
">",
"range",
":",
"ranges",
")",
"{",
"checkClosedOpen",
"(",
"... | Return the count of the specified ranges.
@param ranges ranges, must not be null, must not contain any null ranges, and all ranges must be [closed, open)
@return the count of the specified ranges | [
"Return",
"the",
"count",
"of",
"the",
"specified",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L140-L147 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.isGapSymbol | static boolean isGapSymbol(final Symbol symbol) {
return AlphabetManager.getGapSymbol().equals(symbol)
|| DNATools.getDNA().getGapSymbol().equals(symbol);
} | java | static boolean isGapSymbol(final Symbol symbol) {
return AlphabetManager.getGapSymbol().equals(symbol)
|| DNATools.getDNA().getGapSymbol().equals(symbol);
} | [
"static",
"boolean",
"isGapSymbol",
"(",
"final",
"Symbol",
"symbol",
")",
"{",
"return",
"AlphabetManager",
".",
"getGapSymbol",
"(",
")",
".",
"equals",
"(",
"symbol",
")",
"||",
"DNATools",
".",
"getDNA",
"(",
")",
".",
"getGapSymbol",
"(",
")",
".",
... | Return true if the specified symbol is a gap symbol.
@param symbol symbol
@return true if the specified symbol is a gap symbol | [
"Return",
"true",
"if",
"the",
"specified",
"symbol",
"is",
"a",
"gap",
"symbol",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L185-L188 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.isMatchSymbol | static boolean isMatchSymbol(final Symbol symbol) {
if (!(symbol instanceof BasisSymbol)) {
return false;
}
BasisSymbol basisSymbol = (BasisSymbol) symbol;
Set<Symbol> uniqueSymbols = new HashSet<Symbol>();
for (Object o : basisSymbol.getSymbols()) {
Symbol s = (Symbol) o;
if (isGapSymbol(s)) {
return false;
}
uniqueSymbols.add((Symbol) o);
}
return (uniqueSymbols.size() == 1);
} | java | static boolean isMatchSymbol(final Symbol symbol) {
if (!(symbol instanceof BasisSymbol)) {
return false;
}
BasisSymbol basisSymbol = (BasisSymbol) symbol;
Set<Symbol> uniqueSymbols = new HashSet<Symbol>();
for (Object o : basisSymbol.getSymbols()) {
Symbol s = (Symbol) o;
if (isGapSymbol(s)) {
return false;
}
uniqueSymbols.add((Symbol) o);
}
return (uniqueSymbols.size() == 1);
} | [
"static",
"boolean",
"isMatchSymbol",
"(",
"final",
"Symbol",
"symbol",
")",
"{",
"if",
"(",
"!",
"(",
"symbol",
"instanceof",
"BasisSymbol",
")",
")",
"{",
"return",
"false",
";",
"}",
"BasisSymbol",
"basisSymbol",
"=",
"(",
"BasisSymbol",
")",
"symbol",
... | Return true if the specified symbol represents an alignment match.
@param symbol symbol
@return true if the specified symbol represents an alignment match | [
"Return",
"true",
"if",
"the",
"specified",
"symbol",
"represents",
"an",
"alignment",
"match",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L196-L210 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.gaps | public static List<Range<Long>> gaps(final GappedSymbolList gappedSymbols) {
checkNotNull(gappedSymbols);
List<Range<Long>> gaps = new ArrayList<Range<Long>>();
int gapStart = -1;
for (int i = 1, length = gappedSymbols.length() + 1; i < length; i++) {
if (isGapSymbol(gappedSymbols.symbolAt(i))) {
if (gapStart < 0) {
gapStart = i;
}
}
else {
if (gapStart > 0) {
// biojava coordinates are 1-based
gaps.add(Range.closedOpen(Long.valueOf(gapStart - 1L), Long.valueOf(i - 1L)));
gapStart = -1;
}
}
}
if (gapStart > 0) {
gaps.add(Range.closedOpen(Long.valueOf(gapStart - 1L), Long.valueOf(gappedSymbols.length())));
}
return gaps;
} | java | public static List<Range<Long>> gaps(final GappedSymbolList gappedSymbols) {
checkNotNull(gappedSymbols);
List<Range<Long>> gaps = new ArrayList<Range<Long>>();
int gapStart = -1;
for (int i = 1, length = gappedSymbols.length() + 1; i < length; i++) {
if (isGapSymbol(gappedSymbols.symbolAt(i))) {
if (gapStart < 0) {
gapStart = i;
}
}
else {
if (gapStart > 0) {
// biojava coordinates are 1-based
gaps.add(Range.closedOpen(Long.valueOf(gapStart - 1L), Long.valueOf(i - 1L)));
gapStart = -1;
}
}
}
if (gapStart > 0) {
gaps.add(Range.closedOpen(Long.valueOf(gapStart - 1L), Long.valueOf(gappedSymbols.length())));
}
return gaps;
} | [
"public",
"static",
"List",
"<",
"Range",
"<",
"Long",
">",
">",
"gaps",
"(",
"final",
"GappedSymbolList",
"gappedSymbols",
")",
"{",
"checkNotNull",
"(",
"gappedSymbols",
")",
";",
"List",
"<",
"Range",
"<",
"Long",
">",
">",
"gaps",
"=",
"new",
"ArrayL... | Return the gaps in the specified gapped symbol list as 0-based [closed, open) ranges.
@param gappedSymbols gapped symbol list, must not be null
@return the gaps in the specified gapped symbol list as 0-based [closed, open) ranges | [
"Return",
"the",
"gaps",
"in",
"the",
"specified",
"gapped",
"symbol",
"list",
"as",
"0",
"-",
"based",
"[",
"closed",
"open",
")",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L240-L262 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.matches | public static List<Range<Long>> matches(final AlignmentPair alignmentPair) {
checkNotNull(alignmentPair);
List<Range<Long>> matches = new ArrayList<Range<Long>>();
int matchStart = -1;
for (int i = 1, length = alignmentPair.length() + 1; i < length; i++) {
if (isMatchSymbol(alignmentPair.symbolAt(i))) {
if (matchStart < 0) {
matchStart = i;
}
}
else {
if (matchStart > 0) {
// biojava coordinates are 1-based
matches.add(Range.closedOpen(Long.valueOf(matchStart - 1L), Long.valueOf(i - 1L)));
matchStart = -1;
}
}
}
if (matchStart > 0) {
matches.add(Range.closedOpen(Long.valueOf(matchStart - 1L), Long.valueOf(alignmentPair.length())));
}
return matches;
} | java | public static List<Range<Long>> matches(final AlignmentPair alignmentPair) {
checkNotNull(alignmentPair);
List<Range<Long>> matches = new ArrayList<Range<Long>>();
int matchStart = -1;
for (int i = 1, length = alignmentPair.length() + 1; i < length; i++) {
if (isMatchSymbol(alignmentPair.symbolAt(i))) {
if (matchStart < 0) {
matchStart = i;
}
}
else {
if (matchStart > 0) {
// biojava coordinates are 1-based
matches.add(Range.closedOpen(Long.valueOf(matchStart - 1L), Long.valueOf(i - 1L)));
matchStart = -1;
}
}
}
if (matchStart > 0) {
matches.add(Range.closedOpen(Long.valueOf(matchStart - 1L), Long.valueOf(alignmentPair.length())));
}
return matches;
} | [
"public",
"static",
"List",
"<",
"Range",
"<",
"Long",
">",
">",
"matches",
"(",
"final",
"AlignmentPair",
"alignmentPair",
")",
"{",
"checkNotNull",
"(",
"alignmentPair",
")",
";",
"List",
"<",
"Range",
"<",
"Long",
">",
">",
"matches",
"=",
"new",
"Arr... | Return the alignment matches in the specified alignment pair as 0-based [closed, open) ranges.
@param alignmentPair alignment pair, must not be null
@return the alignment matches in the alignment pair as 0-based [closed, open) ranges | [
"Return",
"the",
"alignment",
"matches",
"in",
"the",
"specified",
"alignment",
"pair",
"as",
"0",
"-",
"based",
"[",
"closed",
"open",
")",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L270-L292 | train |
nmdp-bioinformatics/ngs | align/src/main/java/org/nmdp/ngs/align/Alignments.java | Alignments.mismatches | public static List<Range<Long>> mismatches(final AlignmentPair alignmentPair) {
checkNotNull(alignmentPair);
List<Range<Long>> mismatches = new ArrayList<Range<Long>>();
int mismatchStart = -1;
for (int i = 1, length = alignmentPair.length() + 1; i < length; i++) {
if (isMismatchSymbol(alignmentPair.symbolAt(i))) {
if (mismatchStart < 0) {
mismatchStart = i;
}
}
else {
if (mismatchStart > 0) {
// biojava coordinates are 1-based
mismatches.add(Range.closedOpen(Long.valueOf(mismatchStart - 1L), Long.valueOf(i - 1L)));
mismatchStart = -1;
}
}
}
if (mismatchStart > 0) {
mismatches.add(Range.closedOpen(Long.valueOf(mismatchStart - 1L), Long.valueOf(alignmentPair.length())));
}
return mismatches;
} | java | public static List<Range<Long>> mismatches(final AlignmentPair alignmentPair) {
checkNotNull(alignmentPair);
List<Range<Long>> mismatches = new ArrayList<Range<Long>>();
int mismatchStart = -1;
for (int i = 1, length = alignmentPair.length() + 1; i < length; i++) {
if (isMismatchSymbol(alignmentPair.symbolAt(i))) {
if (mismatchStart < 0) {
mismatchStart = i;
}
}
else {
if (mismatchStart > 0) {
// biojava coordinates are 1-based
mismatches.add(Range.closedOpen(Long.valueOf(mismatchStart - 1L), Long.valueOf(i - 1L)));
mismatchStart = -1;
}
}
}
if (mismatchStart > 0) {
mismatches.add(Range.closedOpen(Long.valueOf(mismatchStart - 1L), Long.valueOf(alignmentPair.length())));
}
return mismatches;
} | [
"public",
"static",
"List",
"<",
"Range",
"<",
"Long",
">",
">",
"mismatches",
"(",
"final",
"AlignmentPair",
"alignmentPair",
")",
"{",
"checkNotNull",
"(",
"alignmentPair",
")",
";",
"List",
"<",
"Range",
"<",
"Long",
">",
">",
"mismatches",
"=",
"new",
... | Return the alignment mismatches in the specified alignment pair as 0-based [closed, open) ranges.
@param alignmentPair alignment pair, must not be null
@return the alignment mismatches in the alignment pair as 0-based [closed, open) ranges | [
"Return",
"the",
"alignment",
"mismatches",
"in",
"the",
"specified",
"alignment",
"pair",
"as",
"0",
"-",
"based",
"[",
"closed",
"open",
")",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/align/src/main/java/org/nmdp/ngs/align/Alignments.java#L300-L322 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.center | public static <C extends Comparable> C center(final Range<C> range) {
checkNotNull(range);
if (!range.hasLowerBound() && !range.hasUpperBound()) {
throw new IllegalStateException("cannot find the center of a range without bounds");
}
if (!range.hasLowerBound()) {
return range.upperEndpoint();
}
if (!range.hasUpperBound()) {
return range.lowerEndpoint();
}
C lowerEndpoint = range.lowerEndpoint();
C upperEndpoint = range.upperEndpoint();
if (upperEndpoint instanceof Integer) {
Integer upper = (Integer) upperEndpoint;
Integer lower = (Integer) lowerEndpoint;
return (C) Integer.valueOf((upper.intValue() + lower.intValue()) / 2);
}
if (upperEndpoint instanceof Long) {
Long upper = (Long) upperEndpoint;
Long lower = (Long) lowerEndpoint;
return (C) Long.valueOf((upper.longValue() + lower.longValue()) / 2L);
}
if (upperEndpoint instanceof BigInteger) {
BigInteger upper = (BigInteger) upperEndpoint;
BigInteger lower = (BigInteger) lowerEndpoint;
BigInteger two = BigInteger.valueOf(2L);
return (C) upper.subtract(lower).divide(two);
}
// todo: could potentially calculate the center of any range with a discrete domain
throw new IllegalStateException("cannot find the center of a range whose endpoint type is not Integer, Long, or BigInteger");
} | java | public static <C extends Comparable> C center(final Range<C> range) {
checkNotNull(range);
if (!range.hasLowerBound() && !range.hasUpperBound()) {
throw new IllegalStateException("cannot find the center of a range without bounds");
}
if (!range.hasLowerBound()) {
return range.upperEndpoint();
}
if (!range.hasUpperBound()) {
return range.lowerEndpoint();
}
C lowerEndpoint = range.lowerEndpoint();
C upperEndpoint = range.upperEndpoint();
if (upperEndpoint instanceof Integer) {
Integer upper = (Integer) upperEndpoint;
Integer lower = (Integer) lowerEndpoint;
return (C) Integer.valueOf((upper.intValue() + lower.intValue()) / 2);
}
if (upperEndpoint instanceof Long) {
Long upper = (Long) upperEndpoint;
Long lower = (Long) lowerEndpoint;
return (C) Long.valueOf((upper.longValue() + lower.longValue()) / 2L);
}
if (upperEndpoint instanceof BigInteger) {
BigInteger upper = (BigInteger) upperEndpoint;
BigInteger lower = (BigInteger) lowerEndpoint;
BigInteger two = BigInteger.valueOf(2L);
return (C) upper.subtract(lower).divide(two);
}
// todo: could potentially calculate the center of any range with a discrete domain
throw new IllegalStateException("cannot find the center of a range whose endpoint type is not Integer, Long, or BigInteger");
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"C",
"center",
"(",
"final",
"Range",
"<",
"C",
">",
"range",
")",
"{",
"checkNotNull",
"(",
"range",
")",
";",
"if",
"(",
"!",
"range",
".",
"hasLowerBound",
"(",
")",
"&&",
"!",
"range",
... | Return the center of the specified range.
@param <C> range endpoint type
@param range range, must not be null
@return the center of the specified range | [
"Return",
"the",
"center",
"of",
"the",
"specified",
"range",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L53-L86 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.intersect | public static <C extends Comparable> boolean intersect(final Range<C> range0, final Range<C> range1) {
checkNotNull(range0);
checkNotNull(range1);
return range0.isConnected(range1) && !range0.intersection(range1).isEmpty();
} | java | public static <C extends Comparable> boolean intersect(final Range<C> range0, final Range<C> range1) {
checkNotNull(range0);
checkNotNull(range1);
return range0.isConnected(range1) && !range0.intersection(range1).isEmpty();
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"boolean",
"intersect",
"(",
"final",
"Range",
"<",
"C",
">",
"range0",
",",
"final",
"Range",
"<",
"C",
">",
"range1",
")",
"{",
"checkNotNull",
"(",
"range0",
")",
";",
"checkNotNull",
"(",
... | Return true if the specified ranges intersect.
@param <C> range endpoint type
@param range0 first range, must not be null
@param range1 second range, must not be null
@return true if the specified ranges intersect | [
"Return",
"true",
"if",
"the",
"specified",
"ranges",
"intersect",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L96-L100 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.isLessThan | public static <C extends Comparable> boolean isLessThan(final Range<C> range, final C value) {
checkNotNull(range);
checkNotNull(value);
if (!range.hasUpperBound()) {
return false;
}
if (range.upperBoundType() == BoundType.OPEN && range.upperEndpoint().equals(value)) {
return true;
}
return range.upperEndpoint().compareTo(value) < 0;
} | java | public static <C extends Comparable> boolean isLessThan(final Range<C> range, final C value) {
checkNotNull(range);
checkNotNull(value);
if (!range.hasUpperBound()) {
return false;
}
if (range.upperBoundType() == BoundType.OPEN && range.upperEndpoint().equals(value)) {
return true;
}
return range.upperEndpoint().compareTo(value) < 0;
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"boolean",
"isLessThan",
"(",
"final",
"Range",
"<",
"C",
">",
"range",
",",
"final",
"C",
"value",
")",
"{",
"checkNotNull",
"(",
"range",
")",
";",
"checkNotNull",
"(",
"value",
")",
";",
"i... | Return true if the specified range is strictly less than the specified value.
@param <C> range endpoint type
@param range range, must not be null
@param value value, must not be null
@return true if the specified range is strictly less than the specified value | [
"Return",
"true",
"if",
"the",
"specified",
"range",
"is",
"strictly",
"less",
"than",
"the",
"specified",
"value",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L110-L121 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.isGreaterThan | public static <C extends Comparable> boolean isGreaterThan(final Range<C> range, final C value) {
checkNotNull(range);
checkNotNull(value);
if (!range.hasLowerBound()) {
return false;
}
if (range.lowerBoundType() == BoundType.OPEN && range.lowerEndpoint().equals(value)) {
return true;
}
return range.lowerEndpoint().compareTo(value) > 0;
} | java | public static <C extends Comparable> boolean isGreaterThan(final Range<C> range, final C value) {
checkNotNull(range);
checkNotNull(value);
if (!range.hasLowerBound()) {
return false;
}
if (range.lowerBoundType() == BoundType.OPEN && range.lowerEndpoint().equals(value)) {
return true;
}
return range.lowerEndpoint().compareTo(value) > 0;
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"boolean",
"isGreaterThan",
"(",
"final",
"Range",
"<",
"C",
">",
"range",
",",
"final",
"C",
"value",
")",
"{",
"checkNotNull",
"(",
"range",
")",
";",
"checkNotNull",
"(",
"value",
")",
";",
... | Return true if the specified range is strictly greater than the specified value.
@param <C> range endpoint type
@param range range, must not be null
@param value value, must not be null
@return true if the specified range is strictly greater than the specified value | [
"Return",
"true",
"if",
"the",
"specified",
"range",
"is",
"strictly",
"greater",
"than",
"the",
"specified",
"value",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L131-L142 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.orderingByLowerEndpoint | public static <C extends Comparable> Ordering<Range<C>> orderingByLowerEndpoint() {
return new Ordering<Range<C>>() {
@Override
public int compare(final Range<C> left, final Range<C> right) {
return ComparisonChain.start()
.compare(left.hasLowerBound(), right.hasLowerBound())
.compare(left.lowerEndpoint(), right.lowerEndpoint())
.result();
}
};
} | java | public static <C extends Comparable> Ordering<Range<C>> orderingByLowerEndpoint() {
return new Ordering<Range<C>>() {
@Override
public int compare(final Range<C> left, final Range<C> right) {
return ComparisonChain.start()
.compare(left.hasLowerBound(), right.hasLowerBound())
.compare(left.lowerEndpoint(), right.lowerEndpoint())
.result();
}
};
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"Ordering",
"<",
"Range",
"<",
"C",
">",
">",
"orderingByLowerEndpoint",
"(",
")",
"{",
"return",
"new",
"Ordering",
"<",
"Range",
"<",
"C",
">",
">",
"(",
")",
"{",
"@",
"Override",
"public",... | Return an ordering by lower endpoint over ranges.
@param <C> range endpoint type
@return an ordering by lower endpoint over ranges | [
"Return",
"an",
"ordering",
"by",
"lower",
"endpoint",
"over",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L151-L161 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.reverseOrderingByLowerEndpoint | public static <C extends Comparable> Ordering<Range<C>> reverseOrderingByLowerEndpoint() {
Ordering<Range<C>> orderingByLowerEndpoint = orderingByLowerEndpoint();
return orderingByLowerEndpoint.reverse();
} | java | public static <C extends Comparable> Ordering<Range<C>> reverseOrderingByLowerEndpoint() {
Ordering<Range<C>> orderingByLowerEndpoint = orderingByLowerEndpoint();
return orderingByLowerEndpoint.reverse();
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"Ordering",
"<",
"Range",
"<",
"C",
">",
">",
"reverseOrderingByLowerEndpoint",
"(",
")",
"{",
"Ordering",
"<",
"Range",
"<",
"C",
">>",
"orderingByLowerEndpoint",
"=",
"orderingByLowerEndpoint",
"(",
... | Return a reverse ordering by lower endpoint over ranges.
@param <C> range endpoint type
@return a reverse ordering by lower endpoint over ranges | [
"Return",
"a",
"reverse",
"ordering",
"by",
"lower",
"endpoint",
"over",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L169-L172 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.orderingByUpperEndpoint | public static <C extends Comparable> Ordering<Range<C>> orderingByUpperEndpoint() {
return new Ordering<Range<C>>() {
@Override
public int compare(final Range<C> left, final Range<C> right) {
return ComparisonChain.start()
.compare(left.hasUpperBound(), right.hasUpperBound())
.compare(left.upperEndpoint(), right.upperEndpoint())
.result();
}
};
} | java | public static <C extends Comparable> Ordering<Range<C>> orderingByUpperEndpoint() {
return new Ordering<Range<C>>() {
@Override
public int compare(final Range<C> left, final Range<C> right) {
return ComparisonChain.start()
.compare(left.hasUpperBound(), right.hasUpperBound())
.compare(left.upperEndpoint(), right.upperEndpoint())
.result();
}
};
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"Ordering",
"<",
"Range",
"<",
"C",
">",
">",
"orderingByUpperEndpoint",
"(",
")",
"{",
"return",
"new",
"Ordering",
"<",
"Range",
"<",
"C",
">",
">",
"(",
")",
"{",
"@",
"Override",
"public",... | Return an ordering by upper endpoint over ranges.
@param <C> range endpoint type
@return an ordering by upper endpoint over ranges | [
"Return",
"an",
"ordering",
"by",
"upper",
"endpoint",
"over",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L180-L190 | train |
nmdp-bioinformatics/ngs | range/src/main/java/org/nmdp/ngs/range/Ranges.java | Ranges.reverseOrderingByUpperEndpoint | public static <C extends Comparable> Ordering<Range<C>> reverseOrderingByUpperEndpoint() {
Ordering<Range<C>> orderingByUpperEndpoint = orderingByUpperEndpoint();
return orderingByUpperEndpoint.reverse();
} | java | public static <C extends Comparable> Ordering<Range<C>> reverseOrderingByUpperEndpoint() {
Ordering<Range<C>> orderingByUpperEndpoint = orderingByUpperEndpoint();
return orderingByUpperEndpoint.reverse();
} | [
"public",
"static",
"<",
"C",
"extends",
"Comparable",
">",
"Ordering",
"<",
"Range",
"<",
"C",
">",
">",
"reverseOrderingByUpperEndpoint",
"(",
")",
"{",
"Ordering",
"<",
"Range",
"<",
"C",
">>",
"orderingByUpperEndpoint",
"=",
"orderingByUpperEndpoint",
"(",
... | Return a reverse ordering by upper endpoint over ranges.
@param <C> range endpoint type
@return a reverse ordering by upper endpoint over ranges | [
"Return",
"a",
"reverse",
"ordering",
"by",
"upper",
"endpoint",
"over",
"ranges",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/range/src/main/java/org/nmdp/ngs/range/Ranges.java#L198-L201 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/CurrencyExchangeRateUrl.java | CurrencyExchangeRateUrl.getCurrencyExchangeRatesUrl | public static MozuUrl getCurrencyExchangeRatesUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/currencies/exchangerates");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getCurrencyExchangeRatesUrl()
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/catalog/storefront/currencies/exchangerates");
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getCurrencyExchangeRatesUrl",
"(",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/catalog/storefront/currencies/exchangerates\"",
")",
";",
"return",
"new",
"MozuUrl",
"(",
"formatter",
".",
"getRes... | Get Resource Url for GetCurrencyExchangeRates
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetCurrencyExchangeRates"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/catalog/storefront/CurrencyExchangeRateUrl.java#L20-L24 | train |
mgm-tp/jfunk | jfunk-common/src/main/java/com/mgmtp/jfunk/common/util/Configuration.java | Configuration.extractFromArchive | public void extractFromArchive(final File targetFile, final boolean forceOverwrite) throws IOException {
if (zipArchive != null) {
ZipEntry entry = zipArchive.getEntry(targetFile.getName());
if (entry != null) {
if (!targetFile.exists()) {
try {
targetFile.createNewFile();
} catch (IOException ex) {
throw new JFunkException("Error creating file: " + targetFile, ex);
}
} else if (!forceOverwrite) {
return;
}
logger.info("Loading file '{}' from zip archive...", targetFile);
OutputStream out = null;
InputStream in = null;
try {
out = new FileOutputStream(targetFile);
in = zipArchive.getInputStream(entry);
IOUtils.copy(in, out);
} finally {
IOUtils.closeQuietly(in);
IOUtils.closeQuietly(out);
}
} else {
logger.error("Could not find file '{}' in zip archive", targetFile);
}
}
} | java | public void extractFromArchive(final File targetFile, final boolean forceOverwrite) throws IOException {
if (zipArchive != null) {
ZipEntry entry = zipArchive.getEntry(targetFile.getName());
if (entry != null) {
if (!targetFile.exists()) {
try {
targetFile.createNewFile();
} catch (IOException ex) {
throw new JFunkException("Error creating file: " + targetFile, ex);
}
} else if (!forceOverwrite) {
return;
}
logger.info("Loading file '{}' from zip archive...", targetFile);
OutputStream out = null;
InputStream in = null;
try {
out = new FileOutputStream(targetFile);
in = zipArchive.getInputStream(entry);
IOUtils.copy(in, out);
} finally {
IOUtils.closeQuietly(in);
IOUtils.closeQuietly(out);
}
} else {
logger.error("Could not find file '{}' in zip archive", targetFile);
}
}
} | [
"public",
"void",
"extractFromArchive",
"(",
"final",
"File",
"targetFile",
",",
"final",
"boolean",
"forceOverwrite",
")",
"throws",
"IOException",
"{",
"if",
"(",
"zipArchive",
"!=",
"null",
")",
"{",
"ZipEntry",
"entry",
"=",
"zipArchive",
".",
"getEntry",
... | Extracts the specified file from this configuration's zip file, if applicable.
@param targetFile
The target file. The file name without the path information is taken in order to
identify the zip entry to extract.
@param forceOverwrite
If {@code true}, an existing file is overwritten. | [
"Extracts",
"the",
"specified",
"file",
"from",
"this",
"configuration",
"s",
"zip",
"file",
"if",
"applicable",
"."
] | 5b9fecac5778b988bb458085ded39ea9a4c7c2ae | https://github.com/mgm-tp/jfunk/blob/5b9fecac5778b988bb458085ded39ea9a4c7c2ae/jfunk-common/src/main/java/com/mgmtp/jfunk/common/util/Configuration.java#L271-L299 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/checkouts/DestinationUrl.java | DestinationUrl.getDestinationUrl | public static MozuUrl getDestinationUrl(String checkoutId, String destinationId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/checkouts/{checkoutId}/destinations/{destinationId}?responseFields={responseFields}");
formatter.formatUrl("checkoutId", checkoutId);
formatter.formatUrl("destinationId", destinationId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl getDestinationUrl(String checkoutId, String destinationId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/checkouts/{checkoutId}/destinations/{destinationId}?responseFields={responseFields}");
formatter.formatUrl("checkoutId", checkoutId);
formatter.formatUrl("destinationId", destinationId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"getDestinationUrl",
"(",
"String",
"checkoutId",
",",
"String",
"destinationId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/checkouts/{checkoutId}/destinations/{de... | Get Resource Url for GetDestination
@param checkoutId The unique identifier of the checkout.
@param destinationId The unique identifier of the destination.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"GetDestination"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/checkouts/DestinationUrl.java#L35-L42 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/checkouts/DestinationUrl.java | DestinationUrl.addDestinationUrl | public static MozuUrl addDestinationUrl(String checkoutId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/checkouts/{checkoutId}/destinations?responseFields={responseFields}");
formatter.formatUrl("checkoutId", checkoutId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl addDestinationUrl(String checkoutId, String responseFields)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/checkouts/{checkoutId}/destinations?responseFields={responseFields}");
formatter.formatUrl("checkoutId", checkoutId);
formatter.formatUrl("responseFields", responseFields);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"addDestinationUrl",
"(",
"String",
"checkoutId",
",",
"String",
"responseFields",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/checkouts/{checkoutId}/destinations?responseFields={responseFields}\"",
")"... | Get Resource Url for AddDestination
@param checkoutId The unique identifier of the checkout.
@param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"AddDestination"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/checkouts/DestinationUrl.java#L50-L56 | train |
Mozu/mozu-java | mozu-java-core/src/main/java/com/mozu/api/urls/commerce/checkouts/DestinationUrl.java | DestinationUrl.removeDestinationUrl | public static MozuUrl removeDestinationUrl(String checkoutId, String destinationId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/checkouts/{checkoutId}/destinations/{destinationId}");
formatter.formatUrl("checkoutId", checkoutId);
formatter.formatUrl("destinationId", destinationId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | java | public static MozuUrl removeDestinationUrl(String checkoutId, String destinationId)
{
UrlFormatter formatter = new UrlFormatter("/api/commerce/checkouts/{checkoutId}/destinations/{destinationId}");
formatter.formatUrl("checkoutId", checkoutId);
formatter.formatUrl("destinationId", destinationId);
return new MozuUrl(formatter.getResourceUrl(), MozuUrl.UrlLocation.TENANT_POD) ;
} | [
"public",
"static",
"MozuUrl",
"removeDestinationUrl",
"(",
"String",
"checkoutId",
",",
"String",
"destinationId",
")",
"{",
"UrlFormatter",
"formatter",
"=",
"new",
"UrlFormatter",
"(",
"\"/api/commerce/checkouts/{checkoutId}/destinations/{destinationId}\"",
")",
";",
"fo... | Get Resource Url for RemoveDestination
@param checkoutId The unique identifier of the checkout.
@param destinationId The unique identifier of the destination.
@return String Resource Url | [
"Get",
"Resource",
"Url",
"for",
"RemoveDestination"
] | 5beadde73601a859f845e3e2fc1077b39c8bea83 | https://github.com/Mozu/mozu-java/blob/5beadde73601a859f845e3e2fc1077b39c8bea83/mozu-java-core/src/main/java/com/mozu/api/urls/commerce/checkouts/DestinationUrl.java#L80-L86 | train |
nmdp-bioinformatics/ngs | variant/src/main/java/org/nmdp/ngs/variant/vcf/VcfSampleParser.java | VcfSampleParser.samples | public static Iterable<VcfSample> samples(final Readable readable) throws IOException {
checkNotNull(readable);
ParseListener parseListener = new ParseListener();
VcfParser.parse(readable, parseListener);
return parseListener.getSamples().values();
} | java | public static Iterable<VcfSample> samples(final Readable readable) throws IOException {
checkNotNull(readable);
ParseListener parseListener = new ParseListener();
VcfParser.parse(readable, parseListener);
return parseListener.getSamples().values();
} | [
"public",
"static",
"Iterable",
"<",
"VcfSample",
">",
"samples",
"(",
"final",
"Readable",
"readable",
")",
"throws",
"IOException",
"{",
"checkNotNull",
"(",
"readable",
")",
";",
"ParseListener",
"parseListener",
"=",
"new",
"ParseListener",
"(",
")",
";",
... | Read zero or more VCF samples from the specified readable.
@param readable readable to read from, must not be null
@return zero or more VCF samples read from the specified readable
@throws IOException if an I/O error occurs | [
"Read",
"zero",
"or",
"more",
"VCF",
"samples",
"from",
"the",
"specified",
"readable",
"."
] | 277627e4311313a80f5dc110b3185b0d7af32bd0 | https://github.com/nmdp-bioinformatics/ngs/blob/277627e4311313a80f5dc110b3185b0d7af32bd0/variant/src/main/java/org/nmdp/ngs/variant/vcf/VcfSampleParser.java#L57-L62 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.