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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
fuinorg/event-store-commons | eshttp/src/main/java/org/fuin/esc/eshttp/ESHttpUtils.java | ESHttpUtils.parseDocument | @NotNull
public static Document parseDocument(@NotNull final DocumentBuilder builder,
@NotNull final InputStream inputStream) {
Contract.requireArgNotNull("builder", builder);
Contract.requireArgNotNull("inputStream", inputStream);
try {
return builder.parse(inputStream);
} catch (final SAXException | IOException ex) {
throw new RuntimeException("Failed to parse XML", ex);
}
} | java | @NotNull
public static Document parseDocument(@NotNull final DocumentBuilder builder,
@NotNull final InputStream inputStream) {
Contract.requireArgNotNull("builder", builder);
Contract.requireArgNotNull("inputStream", inputStream);
try {
return builder.parse(inputStream);
} catch (final SAXException | IOException ex) {
throw new RuntimeException("Failed to parse XML", ex);
}
} | [
"@",
"NotNull",
"public",
"static",
"Document",
"parseDocument",
"(",
"@",
"NotNull",
"final",
"DocumentBuilder",
"builder",
",",
"@",
"NotNull",
"final",
"InputStream",
"inputStream",
")",
"{",
"Contract",
".",
"requireArgNotNull",
"(",
"\"builder\"",
",",
"build... | Parse the document and wraps checked exceptions into runtime exceptions.
@param builder
Builder to use.
@param inputStream
Input stream with XML.
@return Document. | [
"Parse",
"the",
"document",
"and",
"wraps",
"checked",
"exceptions",
"into",
"runtime",
"exceptions",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/eshttp/src/main/java/org/fuin/esc/eshttp/ESHttpUtils.java#L153-L163 | train |
fuinorg/event-store-commons | eshttp/src/main/java/org/fuin/esc/eshttp/ESHttpUtils.java | ESHttpUtils.createXPath | @NotNull
public static XPath createXPath(@Nullable final String... values) {
final NamespaceContext context = new NamespaceContextMap(values);
final XPath xPath = XPathFactory.newInstance().newXPath();
xPath.setNamespaceContext(context);
return xPath;
} | java | @NotNull
public static XPath createXPath(@Nullable final String... values) {
final NamespaceContext context = new NamespaceContextMap(values);
final XPath xPath = XPathFactory.newInstance().newXPath();
xPath.setNamespaceContext(context);
return xPath;
} | [
"@",
"NotNull",
"public",
"static",
"XPath",
"createXPath",
"(",
"@",
"Nullable",
"final",
"String",
"...",
"values",
")",
"{",
"final",
"NamespaceContext",
"context",
"=",
"new",
"NamespaceContextMap",
"(",
"values",
")",
";",
"final",
"XPath",
"xPath",
"=",
... | Creates a new XPath with a configured namespace context.
@param values
Pairs of 'prefix' + 'uri'.
@return New instance. | [
"Creates",
"a",
"new",
"XPath",
"with",
"a",
"configured",
"namespace",
"context",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/eshttp/src/main/java/org/fuin/esc/eshttp/ESHttpUtils.java#L173-L179 | train |
fuinorg/event-store-commons | eshttp/src/main/java/org/fuin/esc/eshttp/ESHttpUtils.java | ESHttpUtils.createDocumentBuilder | @NotNull
public static DocumentBuilder createDocumentBuilder() {
try {
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
return factory.newDocumentBuilder();
} catch (final ParserConfigurationException ex) {
throw new RuntimeException("Couldn't create document builder", ex);
}
} | java | @NotNull
public static DocumentBuilder createDocumentBuilder() {
try {
final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setNamespaceAware(true);
return factory.newDocumentBuilder();
} catch (final ParserConfigurationException ex) {
throw new RuntimeException("Couldn't create document builder", ex);
}
} | [
"@",
"NotNull",
"public",
"static",
"DocumentBuilder",
"createDocumentBuilder",
"(",
")",
"{",
"try",
"{",
"final",
"DocumentBuilderFactory",
"factory",
"=",
"DocumentBuilderFactory",
".",
"newInstance",
"(",
")",
";",
"factory",
".",
"setNamespaceAware",
"(",
"true... | Creates a namespace aware document builder.
@return New instance. | [
"Creates",
"a",
"namespace",
"aware",
"document",
"builder",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/eshttp/src/main/java/org/fuin/esc/eshttp/ESHttpUtils.java#L186-L195 | train |
datacleaner/AnalyzerBeans | env/cluster/src/main/java/org/eobjects/analyzer/cluster/DistributedAnalysisResultReducer.java | DistributedAnalysisResultReducer.reduceResults | private void reduceResults(final List<AnalysisResultFuture> results,
final Map<ComponentJob, AnalyzerResult> resultMap,
final List<AnalysisResultReductionException> reductionErrors) {
if (_hasRun.get()) {
// already reduced
return;
}
_hasRun.set(true);
for (AnalysisResultFuture result : results) {
if (result.isErrornous()) {
logger.error("Encountered errorneous slave result. Result reduction will stop. Result={}", result);
final List<Throwable> errors = result.getErrors();
if (!errors.isEmpty()) {
final Throwable firstError = errors.get(0);
logger.error(
"Encountered error before reducing results (showing stack trace of invoking the reducer): "
+ firstError.getMessage(), new Throwable());
_analysisListener.errorUknown(_masterJob, firstError);
}
// error occurred!
return;
}
}
final Collection<AnalyzerJob> analyzerJobs = _masterJob.getAnalyzerJobs();
for (AnalyzerJob masterAnalyzerJob : analyzerJobs) {
final Collection<AnalyzerResult> slaveResults = new ArrayList<AnalyzerResult>();
logger.info("Reducing {} slave results for component: {}", results.size(), masterAnalyzerJob);
for (AnalysisResultFuture result : results) {
final Map<ComponentJob, AnalyzerResult> slaveResultMap = result.getResultMap();
final List<AnalyzerJob> slaveAnalyzerJobs = CollectionUtils2.filterOnClass(slaveResultMap.keySet(),
AnalyzerJob.class);
final AnalyzerJobHelper analyzerJobHelper = new AnalyzerJobHelper(slaveAnalyzerJobs);
final AnalyzerJob slaveAnalyzerJob = analyzerJobHelper.getAnalyzerJob(masterAnalyzerJob);
if (slaveAnalyzerJob == null) {
throw new IllegalStateException("Could not resolve slave component matching [" + masterAnalyzerJob
+ "] in slave result: " + result);
}
final AnalyzerResult analyzerResult = result.getResult(slaveAnalyzerJob);
slaveResults.add(analyzerResult);
}
reduce(masterAnalyzerJob, slaveResults, resultMap, reductionErrors);
}
} | java | private void reduceResults(final List<AnalysisResultFuture> results,
final Map<ComponentJob, AnalyzerResult> resultMap,
final List<AnalysisResultReductionException> reductionErrors) {
if (_hasRun.get()) {
// already reduced
return;
}
_hasRun.set(true);
for (AnalysisResultFuture result : results) {
if (result.isErrornous()) {
logger.error("Encountered errorneous slave result. Result reduction will stop. Result={}", result);
final List<Throwable> errors = result.getErrors();
if (!errors.isEmpty()) {
final Throwable firstError = errors.get(0);
logger.error(
"Encountered error before reducing results (showing stack trace of invoking the reducer): "
+ firstError.getMessage(), new Throwable());
_analysisListener.errorUknown(_masterJob, firstError);
}
// error occurred!
return;
}
}
final Collection<AnalyzerJob> analyzerJobs = _masterJob.getAnalyzerJobs();
for (AnalyzerJob masterAnalyzerJob : analyzerJobs) {
final Collection<AnalyzerResult> slaveResults = new ArrayList<AnalyzerResult>();
logger.info("Reducing {} slave results for component: {}", results.size(), masterAnalyzerJob);
for (AnalysisResultFuture result : results) {
final Map<ComponentJob, AnalyzerResult> slaveResultMap = result.getResultMap();
final List<AnalyzerJob> slaveAnalyzerJobs = CollectionUtils2.filterOnClass(slaveResultMap.keySet(),
AnalyzerJob.class);
final AnalyzerJobHelper analyzerJobHelper = new AnalyzerJobHelper(slaveAnalyzerJobs);
final AnalyzerJob slaveAnalyzerJob = analyzerJobHelper.getAnalyzerJob(masterAnalyzerJob);
if (slaveAnalyzerJob == null) {
throw new IllegalStateException("Could not resolve slave component matching [" + masterAnalyzerJob
+ "] in slave result: " + result);
}
final AnalyzerResult analyzerResult = result.getResult(slaveAnalyzerJob);
slaveResults.add(analyzerResult);
}
reduce(masterAnalyzerJob, slaveResults, resultMap, reductionErrors);
}
} | [
"private",
"void",
"reduceResults",
"(",
"final",
"List",
"<",
"AnalysisResultFuture",
">",
"results",
",",
"final",
"Map",
"<",
"ComponentJob",
",",
"AnalyzerResult",
">",
"resultMap",
",",
"final",
"List",
"<",
"AnalysisResultReductionException",
">",
"reductionEr... | Reduces all the analyzer results of an analysis
@param results
@param resultMap
@param reductionErrors | [
"Reduces",
"all",
"the",
"analyzer",
"results",
"of",
"an",
"analysis"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/env/cluster/src/main/java/org/eobjects/analyzer/cluster/DistributedAnalysisResultReducer.java#L90-L140 | train |
datacleaner/AnalyzerBeans | env/cluster/src/main/java/org/eobjects/analyzer/cluster/DistributedAnalysisResultReducer.java | DistributedAnalysisResultReducer.reduce | @SuppressWarnings("unchecked")
private void reduce(AnalyzerJob analyzerJob, Collection<AnalyzerResult> slaveResults,
Map<ComponentJob, AnalyzerResult> resultMap, List<AnalysisResultReductionException> reductionErrors) {
if (slaveResults.size() == 1) {
// special case where these was only 1 slave job
final AnalyzerResult firstResult = slaveResults.iterator().next();
resultMap.put(analyzerJob, firstResult);
_analysisListener.analyzerSuccess(_masterJob, analyzerJob, firstResult);
return;
}
final Class<? extends AnalyzerResultReducer<?>> reducerClass = analyzerJob.getDescriptor()
.getResultReducerClass();
final ComponentDescriptor<? extends AnalyzerResultReducer<?>> reducerDescriptor = Descriptors
.ofComponent(reducerClass);
AnalyzerResultReducer<AnalyzerResult> reducer = null;
boolean success = false;
try {
reducer = (AnalyzerResultReducer<AnalyzerResult>) reducerDescriptor.newInstance();
_lifeCycleHelper.assignProvidedProperties(reducerDescriptor, reducer);
_lifeCycleHelper.initialize(reducerDescriptor, reducer);
final AnalyzerResult reducedResult = reducer.reduce(slaveResults);
resultMap.put(analyzerJob, reducedResult);
success = true;
_analysisListener.analyzerSuccess(_masterJob, analyzerJob, reducedResult);
} catch (Exception e) {
AnalysisResultReductionException reductionError = new AnalysisResultReductionException(analyzerJob,
slaveResults, e);
reductionErrors.add(reductionError);
_analysisListener.errorInComponent(_masterJob, analyzerJob, null, e);
} finally {
if (reducer != null) {
_lifeCycleHelper.close(reducerDescriptor, reducer, success);
}
}
} | java | @SuppressWarnings("unchecked")
private void reduce(AnalyzerJob analyzerJob, Collection<AnalyzerResult> slaveResults,
Map<ComponentJob, AnalyzerResult> resultMap, List<AnalysisResultReductionException> reductionErrors) {
if (slaveResults.size() == 1) {
// special case where these was only 1 slave job
final AnalyzerResult firstResult = slaveResults.iterator().next();
resultMap.put(analyzerJob, firstResult);
_analysisListener.analyzerSuccess(_masterJob, analyzerJob, firstResult);
return;
}
final Class<? extends AnalyzerResultReducer<?>> reducerClass = analyzerJob.getDescriptor()
.getResultReducerClass();
final ComponentDescriptor<? extends AnalyzerResultReducer<?>> reducerDescriptor = Descriptors
.ofComponent(reducerClass);
AnalyzerResultReducer<AnalyzerResult> reducer = null;
boolean success = false;
try {
reducer = (AnalyzerResultReducer<AnalyzerResult>) reducerDescriptor.newInstance();
_lifeCycleHelper.assignProvidedProperties(reducerDescriptor, reducer);
_lifeCycleHelper.initialize(reducerDescriptor, reducer);
final AnalyzerResult reducedResult = reducer.reduce(slaveResults);
resultMap.put(analyzerJob, reducedResult);
success = true;
_analysisListener.analyzerSuccess(_masterJob, analyzerJob, reducedResult);
} catch (Exception e) {
AnalysisResultReductionException reductionError = new AnalysisResultReductionException(analyzerJob,
slaveResults, e);
reductionErrors.add(reductionError);
_analysisListener.errorInComponent(_masterJob, analyzerJob, null, e);
} finally {
if (reducer != null) {
_lifeCycleHelper.close(reducerDescriptor, reducer, success);
}
}
} | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"private",
"void",
"reduce",
"(",
"AnalyzerJob",
"analyzerJob",
",",
"Collection",
"<",
"AnalyzerResult",
">",
"slaveResults",
",",
"Map",
"<",
"ComponentJob",
",",
"AnalyzerResult",
">",
"resultMap",
",",
"List"... | Reduces result for a single analyzer
@param analyzerJob
@param slaveResults
@param resultMap
@param reductionErrors | [
"Reduces",
"result",
"for",
"a",
"single",
"analyzer"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/env/cluster/src/main/java/org/eobjects/analyzer/cluster/DistributedAnalysisResultReducer.java#L150-L193 | train |
datacleaner/AnalyzerBeans | env/xml-config/src/main/java/org/eobjects/analyzer/configuration/JaxbConfigurationReader.java | JaxbConfigurationReader.unmarshall | public Configuration unmarshall(InputStream inputStream) {
try {
final Unmarshaller unmarshaller = _jaxbContext.createUnmarshaller();
unmarshaller.setEventHandler(new JaxbValidationEventHandler());
final Configuration configuration = (Configuration) unmarshaller.unmarshal(inputStream);
return configuration;
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
} | java | public Configuration unmarshall(InputStream inputStream) {
try {
final Unmarshaller unmarshaller = _jaxbContext.createUnmarshaller();
unmarshaller.setEventHandler(new JaxbValidationEventHandler());
final Configuration configuration = (Configuration) unmarshaller.unmarshal(inputStream);
return configuration;
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
} | [
"public",
"Configuration",
"unmarshall",
"(",
"InputStream",
"inputStream",
")",
"{",
"try",
"{",
"final",
"Unmarshaller",
"unmarshaller",
"=",
"_jaxbContext",
".",
"createUnmarshaller",
"(",
")",
";",
"unmarshaller",
".",
"setEventHandler",
"(",
"new",
"JaxbValidat... | Convenience method to get the untouched JAXB configuration object from an
inputstream.
@param inputStream
@return | [
"Convenience",
"method",
"to",
"get",
"the",
"untouched",
"JAXB",
"configuration",
"object",
"from",
"an",
"inputstream",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/env/xml-config/src/main/java/org/eobjects/analyzer/configuration/JaxbConfigurationReader.java#L239-L249 | train |
datacleaner/AnalyzerBeans | env/xml-config/src/main/java/org/eobjects/analyzer/configuration/JaxbConfigurationReader.java | JaxbConfigurationReader.marshall | public void marshall(Configuration configuration, OutputStream outputStream) {
try {
final Marshaller marshaller = _jaxbContext.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
marshaller.setEventHandler(new JaxbValidationEventHandler());
marshaller.marshal(configuration, outputStream);
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
} | java | public void marshall(Configuration configuration, OutputStream outputStream) {
try {
final Marshaller marshaller = _jaxbContext.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
marshaller.setEventHandler(new JaxbValidationEventHandler());
marshaller.marshal(configuration, outputStream);
} catch (JAXBException e) {
throw new IllegalStateException(e);
}
} | [
"public",
"void",
"marshall",
"(",
"Configuration",
"configuration",
",",
"OutputStream",
"outputStream",
")",
"{",
"try",
"{",
"final",
"Marshaller",
"marshaller",
"=",
"_jaxbContext",
".",
"createMarshaller",
"(",
")",
";",
"marshaller",
".",
"setProperty",
"(",... | Convenience method to marshal a JAXB configuration object into an output
stream.
@param configuration
@param outputStream | [
"Convenience",
"method",
"to",
"marshal",
"a",
"JAXB",
"configuration",
"object",
"into",
"an",
"output",
"stream",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/env/xml-config/src/main/java/org/eobjects/analyzer/configuration/JaxbConfigurationReader.java#L258-L267 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/java/Java.java | Java.createSource | public static synchronized void createSource(Java._ClassBody clazz)
throws IOException {
if (baseDir == null) {
throw new IOException("Base directory for output not set, use 'setBaseDirectory'");
}
String pkg = clazz.getPackage();
if (pkg == null) {
pkg = "";
// throw new IOException("Class package cannot be null");
}
pkg = pkg.replace('.', '/');
File path = new File(baseDir, pkg);
path.mkdirs();
try (PrintWriter fp = new PrintWriter(new FileWriter(new File(path, clazz.getName() + ".java")))) {
clazz.emit(0, fp);
}
} | java | public static synchronized void createSource(Java._ClassBody clazz)
throws IOException {
if (baseDir == null) {
throw new IOException("Base directory for output not set, use 'setBaseDirectory'");
}
String pkg = clazz.getPackage();
if (pkg == null) {
pkg = "";
// throw new IOException("Class package cannot be null");
}
pkg = pkg.replace('.', '/');
File path = new File(baseDir, pkg);
path.mkdirs();
try (PrintWriter fp = new PrintWriter(new FileWriter(new File(path, clazz.getName() + ".java")))) {
clazz.emit(0, fp);
}
} | [
"public",
"static",
"synchronized",
"void",
"createSource",
"(",
"Java",
".",
"_ClassBody",
"clazz",
")",
"throws",
"IOException",
"{",
"if",
"(",
"baseDir",
"==",
"null",
")",
"{",
"throw",
"new",
"IOException",
"(",
"\"Base directory for output not set, use 'setBa... | Create the source file for a given class
@param clazz is the class description
@throws java.io.IOException | [
"Create",
"the",
"source",
"file",
"for",
"a",
"given",
"class"
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/java/Java.java#L74-L91 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/java/Java.java | Java.emitCommentIndentN | private static void emitCommentIndentN(PrintWriter fp, String text, int indent, boolean type) {
synchronized (lock) {
String cc = type ? "/**" : "/*";
fp.println(cc);
String comment = emitCommentIndentNOnly(fp, text, indent);
fp.println(comment + "/");
}
} | java | private static void emitCommentIndentN(PrintWriter fp, String text, int indent, boolean type) {
synchronized (lock) {
String cc = type ? "/**" : "/*";
fp.println(cc);
String comment = emitCommentIndentNOnly(fp, text, indent);
fp.println(comment + "/");
}
} | [
"private",
"static",
"void",
"emitCommentIndentN",
"(",
"PrintWriter",
"fp",
",",
"String",
"text",
",",
"int",
"indent",
",",
"boolean",
"type",
")",
"{",
"synchronized",
"(",
"lock",
")",
"{",
"String",
"cc",
"=",
"type",
"?",
"\"/**\"",
":",
"\"/*\"",
... | Write a comment at some indentation level.
@param fp
@param text
@param indent
@param type | [
"Write",
"a",
"comment",
"at",
"some",
"indentation",
"level",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/java/Java.java#L101-L110 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/java/Java.java | Java.emitFinishCommentIndentN | private static void emitFinishCommentIndentN(PrintWriter fp, int indent) {
final String spaces = " ";
synchronized (lock) {
String comment = spaces.substring(0, indent) + " */";
fp.println(comment);
}
} | java | private static void emitFinishCommentIndentN(PrintWriter fp, int indent) {
final String spaces = " ";
synchronized (lock) {
String comment = spaces.substring(0, indent) + " */";
fp.println(comment);
}
} | [
"private",
"static",
"void",
"emitFinishCommentIndentN",
"(",
"PrintWriter",
"fp",
",",
"int",
"indent",
")",
"{",
"final",
"String",
"spaces",
"=",
"\" \"",
";",
"synchronized",
"(",
"lock",
")",
"{",
"S... | Finish a comment.
@param fp
@param indent | [
"Finish",
"a",
"comment",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/java/Java.java#L124-L130 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/java/Java.java | Java.emitCommentIndentNOnly | private static String emitCommentIndentNOnly(PrintWriter fp, String text, int indent) {
synchronized (lock) {
return (emitCommentIndentNOnly(fp, text, indent, true));
}
} | java | private static String emitCommentIndentNOnly(PrintWriter fp, String text, int indent) {
synchronized (lock) {
return (emitCommentIndentNOnly(fp, text, indent, true));
}
} | [
"private",
"static",
"String",
"emitCommentIndentNOnly",
"(",
"PrintWriter",
"fp",
",",
"String",
"text",
",",
"int",
"indent",
")",
"{",
"synchronized",
"(",
"lock",
")",
"{",
"return",
"(",
"emitCommentIndentNOnly",
"(",
"fp",
",",
"text",
",",
"indent",
"... | Write a comment indent only.
@param fp
@param text
@param indent
@return | [
"Write",
"a",
"comment",
"indent",
"only",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/java/Java.java#L140-L144 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/FuzzerOutputContext.java | FuzzerOutputContext.create | public void create(String outputdir, Program program) {
types.stream().forEach((type) -> type.createOutput(outputdir, program));
} | java | public void create(String outputdir, Program program) {
types.stream().forEach((type) -> type.createOutput(outputdir, program));
} | [
"public",
"void",
"create",
"(",
"String",
"outputdir",
",",
"Program",
"program",
")",
"{",
"types",
".",
"stream",
"(",
")",
".",
"forEach",
"(",
"(",
"type",
")",
"-",
">",
"type",
".",
"createOutput",
"(",
"outputdir",
",",
"program",
")",
")",
"... | Create the output.
@param outputdir where to write the output
@param program the program | [
"Create",
"the",
"output",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/FuzzerOutputContext.java#L29-L31 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/job/builder/AbstractBeanJobBuilder.java | AbstractBeanJobBuilder.setConfiguredPropertyIfChanged | protected boolean setConfiguredPropertyIfChanged(final ConfiguredPropertyDescriptor configuredProperty,
final Object value) {
if (configuredProperty == null) {
throw new IllegalArgumentException("configuredProperty cannot be null");
}
final Object currentValue = configuredProperty.getValue(_configurableBean);
if (EqualsBuilder.equals(currentValue, value)) {
// no change
return false;
}
if (value != null) {
boolean correctType = true;
if (configuredProperty.isArray()) {
if (value.getClass().isArray()) {
int length = Array.getLength(value);
for (int i = 0; i < length; i++) {
Object valuePart = Array.get(value, i);
if (valuePart == null) {
logger.warn("Element no. {} in array (size {}) is null! Value passed to {}", new Object[] {
i, length, configuredProperty });
} else {
if (!ReflectionUtils.is(valuePart.getClass(), configuredProperty.getBaseType())) {
correctType = false;
}
}
}
} else {
if (!ReflectionUtils.is(value.getClass(), configuredProperty.getBaseType())) {
correctType = false;
}
}
} else {
if (!ReflectionUtils.is(value.getClass(), configuredProperty.getBaseType())) {
correctType = false;
}
}
if (!correctType) {
throw new IllegalArgumentException("Invalid value type: " + value.getClass().getName() + ", expected: "
+ configuredProperty.getBaseType().getName());
}
}
configuredProperty.setValue(_configurableBean, value);
return true;
} | java | protected boolean setConfiguredPropertyIfChanged(final ConfiguredPropertyDescriptor configuredProperty,
final Object value) {
if (configuredProperty == null) {
throw new IllegalArgumentException("configuredProperty cannot be null");
}
final Object currentValue = configuredProperty.getValue(_configurableBean);
if (EqualsBuilder.equals(currentValue, value)) {
// no change
return false;
}
if (value != null) {
boolean correctType = true;
if (configuredProperty.isArray()) {
if (value.getClass().isArray()) {
int length = Array.getLength(value);
for (int i = 0; i < length; i++) {
Object valuePart = Array.get(value, i);
if (valuePart == null) {
logger.warn("Element no. {} in array (size {}) is null! Value passed to {}", new Object[] {
i, length, configuredProperty });
} else {
if (!ReflectionUtils.is(valuePart.getClass(), configuredProperty.getBaseType())) {
correctType = false;
}
}
}
} else {
if (!ReflectionUtils.is(value.getClass(), configuredProperty.getBaseType())) {
correctType = false;
}
}
} else {
if (!ReflectionUtils.is(value.getClass(), configuredProperty.getBaseType())) {
correctType = false;
}
}
if (!correctType) {
throw new IllegalArgumentException("Invalid value type: " + value.getClass().getName() + ", expected: "
+ configuredProperty.getBaseType().getName());
}
}
configuredProperty.setValue(_configurableBean, value);
return true;
} | [
"protected",
"boolean",
"setConfiguredPropertyIfChanged",
"(",
"final",
"ConfiguredPropertyDescriptor",
"configuredProperty",
",",
"final",
"Object",
"value",
")",
"{",
"if",
"(",
"configuredProperty",
"==",
"null",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
... | Sets a configured property if it has changed.
Note that this method is for internal use. It does not invoke
{@link #onConfigurationChanged()} even if changes happen. The reason for
this is to allow code reuse and avoid chatty use of the notification
method.
@param configuredProperty
@param value
@return true if the value was changed or false if it was not | [
"Sets",
"a",
"configured",
"property",
"if",
"it",
"has",
"changed",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/job/builder/AbstractBeanJobBuilder.java#L277-L323 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java | EscSpiUtils.deserialize | @NotNull
public static <T> T deserialize(@NotNull final DeserializerRegistry registry, @NotNull final SerializedData data) {
Contract.requireArgNotNull("registry", registry);
Contract.requireArgNotNull("data", data);
final Deserializer deserializer = registry.getDeserializer(data.getType(), data.getMimeType());
return deserializer.unmarshal(data.getRaw(), data.getType(), data.getMimeType());
} | java | @NotNull
public static <T> T deserialize(@NotNull final DeserializerRegistry registry, @NotNull final SerializedData data) {
Contract.requireArgNotNull("registry", registry);
Contract.requireArgNotNull("data", data);
final Deserializer deserializer = registry.getDeserializer(data.getType(), data.getMimeType());
return deserializer.unmarshal(data.getRaw(), data.getType(), data.getMimeType());
} | [
"@",
"NotNull",
"public",
"static",
"<",
"T",
">",
"T",
"deserialize",
"(",
"@",
"NotNull",
"final",
"DeserializerRegistry",
"registry",
",",
"@",
"NotNull",
"final",
"SerializedData",
"data",
")",
"{",
"Contract",
".",
"requireArgNotNull",
"(",
"\"registry\"",
... | Tries to find a deserializer for the given data block.
@param registry
Registry with known deserializers.
@param data
Persisted data.
@return Unmarshalled event.
@param <T>
Expected type of event. | [
"Tries",
"to",
"find",
"a",
"deserializer",
"for",
"the",
"given",
"data",
"block",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java#L92-L99 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java | EscSpiUtils.mimeType | public static EnhancedMimeType mimeType(@NotNull final SerializerRegistry registry, @NotNull final List<CommonEvent> commonEvents) {
Contract.requireArgNotNull("registry", registry);
Contract.requireArgNotNull("commonEvents", commonEvents);
EnhancedMimeType mimeType = null;
for (final CommonEvent commonEvent : commonEvents) {
final Serializer serializer = registry.getSerializer(new SerializedDataType(commonEvent.getDataType().asBaseType()));
if (mimeType == null) {
mimeType = serializer.getMimeType();
} else {
if (!mimeType.equals(serializer.getMimeType())) {
return null;
}
}
}
return mimeType;
} | java | public static EnhancedMimeType mimeType(@NotNull final SerializerRegistry registry, @NotNull final List<CommonEvent> commonEvents) {
Contract.requireArgNotNull("registry", registry);
Contract.requireArgNotNull("commonEvents", commonEvents);
EnhancedMimeType mimeType = null;
for (final CommonEvent commonEvent : commonEvents) {
final Serializer serializer = registry.getSerializer(new SerializedDataType(commonEvent.getDataType().asBaseType()));
if (mimeType == null) {
mimeType = serializer.getMimeType();
} else {
if (!mimeType.equals(serializer.getMimeType())) {
return null;
}
}
}
return mimeType;
} | [
"public",
"static",
"EnhancedMimeType",
"mimeType",
"(",
"@",
"NotNull",
"final",
"SerializerRegistry",
"registry",
",",
"@",
"NotNull",
"final",
"List",
"<",
"CommonEvent",
">",
"commonEvents",
")",
"{",
"Contract",
".",
"requireArgNotNull",
"(",
"\"registry\"",
... | Returns the mime types shared by all events in the list.
@param registry
Registry used to peek the mime type used to serialize the event.
@param commonEvents
List to test.
@return Mime type if all events share the same type or <code>null</code> if there are events with different mime types. | [
"Returns",
"the",
"mime",
"types",
"shared",
"by",
"all",
"events",
"in",
"the",
"list",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java#L111-L128 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java | EscSpiUtils.eventsEqual | public static boolean eventsEqual(@Nullable final List<CommonEvent> eventsA, @Nullable final List<CommonEvent> eventsB) {
if ((eventsA == null) && (eventsB == null)) {
return true;
}
if ((eventsA == null) && (eventsB != null)) {
return false;
}
if ((eventsA != null) && (eventsB == null)) {
return false;
}
if (eventsA.size() != eventsB.size()) {
return false;
}
int currentIdx = eventsA.size() - 1;
int appendIdx = eventsB.size() - 1;
while (appendIdx >= 0) {
final CommonEvent current = eventsA.get(currentIdx);
final CommonEvent append = eventsB.get(appendIdx);
if (!current.equals(append)) {
return false;
}
currentIdx--;
appendIdx--;
}
return true;
} | java | public static boolean eventsEqual(@Nullable final List<CommonEvent> eventsA, @Nullable final List<CommonEvent> eventsB) {
if ((eventsA == null) && (eventsB == null)) {
return true;
}
if ((eventsA == null) && (eventsB != null)) {
return false;
}
if ((eventsA != null) && (eventsB == null)) {
return false;
}
if (eventsA.size() != eventsB.size()) {
return false;
}
int currentIdx = eventsA.size() - 1;
int appendIdx = eventsB.size() - 1;
while (appendIdx >= 0) {
final CommonEvent current = eventsA.get(currentIdx);
final CommonEvent append = eventsB.get(appendIdx);
if (!current.equals(append)) {
return false;
}
currentIdx--;
appendIdx--;
}
return true;
} | [
"public",
"static",
"boolean",
"eventsEqual",
"(",
"@",
"Nullable",
"final",
"List",
"<",
"CommonEvent",
">",
"eventsA",
",",
"@",
"Nullable",
"final",
"List",
"<",
"CommonEvent",
">",
"eventsB",
")",
"{",
"if",
"(",
"(",
"eventsA",
"==",
"null",
")",
"&... | Tests if both lists contain the same events.
@param eventsA
First event list.
@param eventsB
Second event list.
@return TRUE if both lists have the same size and all event identifiers are equal. | [
"Tests",
"if",
"both",
"lists",
"contain",
"the",
"same",
"events",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java#L158-L183 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java | EscSpiUtils.nodeToString | public static String nodeToString(final Node node) {
try {
final Transformer t = TransformerFactory.newInstance().newTransformer();
t.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
final StringWriter sw = new StringWriter();
t.transform(new DOMSource(node), new StreamResult(sw));
return sw.toString();
} catch (final TransformerException ex) {
throw new RuntimeException("Failed to render node", ex);
}
} | java | public static String nodeToString(final Node node) {
try {
final Transformer t = TransformerFactory.newInstance().newTransformer();
t.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
final StringWriter sw = new StringWriter();
t.transform(new DOMSource(node), new StreamResult(sw));
return sw.toString();
} catch (final TransformerException ex) {
throw new RuntimeException("Failed to render node", ex);
}
} | [
"public",
"static",
"String",
"nodeToString",
"(",
"final",
"Node",
"node",
")",
"{",
"try",
"{",
"final",
"Transformer",
"t",
"=",
"TransformerFactory",
".",
"newInstance",
"(",
")",
".",
"newTransformer",
"(",
")",
";",
"t",
".",
"setOutputProperty",
"(",
... | Render a node as string.
@param node
Node to render.
@return XML. | [
"Render",
"a",
"node",
"as",
"string",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java#L243-L253 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java | EscSpiUtils.joinJsonbDeserializerArrays | public static JsonbDeserializer<?>[] joinJsonbDeserializerArrays(final JsonbDeserializer<?>[]... deserializerArrays) {
final List<JsonbDeserializer<?>> all = joinArrays(deserializerArrays);
return all.toArray(new JsonbDeserializer<?>[all.size()]);
} | java | public static JsonbDeserializer<?>[] joinJsonbDeserializerArrays(final JsonbDeserializer<?>[]... deserializerArrays) {
final List<JsonbDeserializer<?>> all = joinArrays(deserializerArrays);
return all.toArray(new JsonbDeserializer<?>[all.size()]);
} | [
"public",
"static",
"JsonbDeserializer",
"<",
"?",
">",
"[",
"]",
"joinJsonbDeserializerArrays",
"(",
"final",
"JsonbDeserializer",
"<",
"?",
">",
"[",
"]",
"...",
"deserializerArrays",
")",
"{",
"final",
"List",
"<",
"JsonbDeserializer",
"<",
"?",
">",
">",
... | Creates all available JSON-B deserializers necessary for the ESC implementation.
@return New array with deserializers. | [
"Creates",
"all",
"available",
"JSON",
"-",
"B",
"deserializers",
"necessary",
"for",
"the",
"ESC",
"implementation",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscSpiUtils.java#L308-L311 | train |
fuinorg/event-store-commons | esjc/src/main/java/org/fuin/esc/esjc/RecordedEvent2CommonEventConverter.java | RecordedEvent2CommonEventConverter.convert | @Override
public final CommonEvent convert(final RecordedEvent eventData) {
final EnhancedMimeType escMetaMimeType = metaMimeType(eventData.isJson);
final SerializedDataType escSerMetaType = new SerializedDataType(EscMeta.TYPE.asBaseType());
final Deserializer escMetaDeserializer = deserRegistry.getDeserializer(escSerMetaType,
escMetaMimeType);
final EscMeta escMeta = escMetaDeserializer.unmarshal(eventData.metadata, escSerMetaType, escMetaMimeType);
final EnhancedMimeType metaMimeType = escMeta.getMetaContentType();
final String metaTransferEncoding;
if (escMeta.getMetaType() == null) {
metaTransferEncoding = null;
} else {
metaTransferEncoding = escMeta.getMetaContentType().getParameter("transfer-encoding");
}
final EnhancedMimeType dataMimeType = escMeta.getDataContentType();
final SerializedDataType serDataType = new SerializedDataType(escMeta.getDataType());
final Deserializer dataDeserializer = deserRegistry.getDeserializer(serDataType, dataMimeType);
final String dataTransferEncoding = escMeta.getDataContentType().getParameter("transfer-encoding");
final Object data = unmarshal(dataTransferEncoding, serDataType, dataDeserializer, dataMimeType, eventData.data,
metaMimeType, escMetaMimeType);
final EventId eventId = new EventId(eventData.eventId);
final TypeName dataType = new TypeName(eventData.eventType);
if (escMeta.getMetaType() == null) {
return new SimpleCommonEvent(eventId, dataType, data);
}
final TypeName metaType = new TypeName(escMeta.getMetaType());
final SerializedDataType serMetaType = new SerializedDataType(escMeta.getMetaType());
final Deserializer metaDeserializer = deserRegistry.getDeserializer(serMetaType, metaMimeType);
final Object meta = unmarshal(metaTransferEncoding, serMetaType, metaDeserializer, metaMimeType, escMeta.getMeta(),
metaMimeType, escMetaMimeType);
return new SimpleCommonEvent(eventId, dataType, data, metaType, meta);
} | java | @Override
public final CommonEvent convert(final RecordedEvent eventData) {
final EnhancedMimeType escMetaMimeType = metaMimeType(eventData.isJson);
final SerializedDataType escSerMetaType = new SerializedDataType(EscMeta.TYPE.asBaseType());
final Deserializer escMetaDeserializer = deserRegistry.getDeserializer(escSerMetaType,
escMetaMimeType);
final EscMeta escMeta = escMetaDeserializer.unmarshal(eventData.metadata, escSerMetaType, escMetaMimeType);
final EnhancedMimeType metaMimeType = escMeta.getMetaContentType();
final String metaTransferEncoding;
if (escMeta.getMetaType() == null) {
metaTransferEncoding = null;
} else {
metaTransferEncoding = escMeta.getMetaContentType().getParameter("transfer-encoding");
}
final EnhancedMimeType dataMimeType = escMeta.getDataContentType();
final SerializedDataType serDataType = new SerializedDataType(escMeta.getDataType());
final Deserializer dataDeserializer = deserRegistry.getDeserializer(serDataType, dataMimeType);
final String dataTransferEncoding = escMeta.getDataContentType().getParameter("transfer-encoding");
final Object data = unmarshal(dataTransferEncoding, serDataType, dataDeserializer, dataMimeType, eventData.data,
metaMimeType, escMetaMimeType);
final EventId eventId = new EventId(eventData.eventId);
final TypeName dataType = new TypeName(eventData.eventType);
if (escMeta.getMetaType() == null) {
return new SimpleCommonEvent(eventId, dataType, data);
}
final TypeName metaType = new TypeName(escMeta.getMetaType());
final SerializedDataType serMetaType = new SerializedDataType(escMeta.getMetaType());
final Deserializer metaDeserializer = deserRegistry.getDeserializer(serMetaType, metaMimeType);
final Object meta = unmarshal(metaTransferEncoding, serMetaType, metaDeserializer, metaMimeType, escMeta.getMeta(),
metaMimeType, escMetaMimeType);
return new SimpleCommonEvent(eventId, dataType, data, metaType, meta);
} | [
"@",
"Override",
"public",
"final",
"CommonEvent",
"convert",
"(",
"final",
"RecordedEvent",
"eventData",
")",
"{",
"final",
"EnhancedMimeType",
"escMetaMimeType",
"=",
"metaMimeType",
"(",
"eventData",
".",
"isJson",
")",
";",
"final",
"SerializedDataType",
"escSer... | Converts event data into a common event.
@param eventData
Data to convert.
@return Converted data das event. | [
"Converts",
"event",
"data",
"into",
"a",
"common",
"event",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/esjc/src/main/java/org/fuin/esc/esjc/RecordedEvent2CommonEventConverter.java#L66-L99 | train |
datacleaner/AnalyzerBeans | components/date-gap/src/main/java/org/eobjects/analyzer/beans/dategap/TimeLine.java | TimeLine.getOverlappingIntervals | public SortedSet<TimeInterval> getOverlappingIntervals(boolean includeSingleTimeInstanceIntervals) {
SortedSet<TimeInterval> result = new TreeSet<TimeInterval>();
for (TimeInterval interval1 : intervals) {
for (TimeInterval interval2 : intervals) {
if (interval1 != interval2) {
TimeInterval overlap = interval1.getOverlap(interval2);
if (overlap != null) {
result.add(overlap);
}
}
}
}
result = getFlattenedIntervals(result);
if (!includeSingleTimeInstanceIntervals) {
for (Iterator<TimeInterval> it = result.iterator(); it.hasNext();) {
TimeInterval timeInterval = it.next();
if (timeInterval.isSingleTimeInstance()) {
it.remove();
}
}
}
return result;
} | java | public SortedSet<TimeInterval> getOverlappingIntervals(boolean includeSingleTimeInstanceIntervals) {
SortedSet<TimeInterval> result = new TreeSet<TimeInterval>();
for (TimeInterval interval1 : intervals) {
for (TimeInterval interval2 : intervals) {
if (interval1 != interval2) {
TimeInterval overlap = interval1.getOverlap(interval2);
if (overlap != null) {
result.add(overlap);
}
}
}
}
result = getFlattenedIntervals(result);
if (!includeSingleTimeInstanceIntervals) {
for (Iterator<TimeInterval> it = result.iterator(); it.hasNext();) {
TimeInterval timeInterval = it.next();
if (timeInterval.isSingleTimeInstance()) {
it.remove();
}
}
}
return result;
} | [
"public",
"SortedSet",
"<",
"TimeInterval",
">",
"getOverlappingIntervals",
"(",
"boolean",
"includeSingleTimeInstanceIntervals",
")",
"{",
"SortedSet",
"<",
"TimeInterval",
">",
"result",
"=",
"new",
"TreeSet",
"<",
"TimeInterval",
">",
"(",
")",
";",
"for",
"(",... | Gets a set of intervals representing the times where there are more than
one interval overlaps.
@param includeSingleTimeInstanceIntervals
whether or not to include intervals if only the ends of two
(or more) intervals are overlapping. If, for example, there
are two intervals, A-to-B and B-to-C. Should "B-to-B" be
included because B actually overlaps?
@return | [
"Gets",
"a",
"set",
"of",
"intervals",
"representing",
"the",
"times",
"where",
"there",
"are",
"more",
"than",
"one",
"interval",
"overlaps",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/date-gap/src/main/java/org/eobjects/analyzer/beans/dategap/TimeLine.java#L94-L119 | train |
datacleaner/AnalyzerBeans | components/date-gap/src/main/java/org/eobjects/analyzer/beans/dategap/TimeLine.java | TimeLine.getTimeGapIntervals | public SortedSet<TimeInterval> getTimeGapIntervals() {
SortedSet<TimeInterval> flattenedIntervals = getFlattenedIntervals();
SortedSet<TimeInterval> gaps = new TreeSet<TimeInterval>();
TimeInterval previous = null;
for (TimeInterval timeInterval : flattenedIntervals) {
if (previous != null) {
long from = previous.getTo();
long to = timeInterval.getFrom();
TimeInterval gap = new TimeInterval(from, to);
gaps.add(gap);
}
previous = timeInterval;
}
return gaps;
} | java | public SortedSet<TimeInterval> getTimeGapIntervals() {
SortedSet<TimeInterval> flattenedIntervals = getFlattenedIntervals();
SortedSet<TimeInterval> gaps = new TreeSet<TimeInterval>();
TimeInterval previous = null;
for (TimeInterval timeInterval : flattenedIntervals) {
if (previous != null) {
long from = previous.getTo();
long to = timeInterval.getFrom();
TimeInterval gap = new TimeInterval(from, to);
gaps.add(gap);
}
previous = timeInterval;
}
return gaps;
} | [
"public",
"SortedSet",
"<",
"TimeInterval",
">",
"getTimeGapIntervals",
"(",
")",
"{",
"SortedSet",
"<",
"TimeInterval",
">",
"flattenedIntervals",
"=",
"getFlattenedIntervals",
"(",
")",
";",
"SortedSet",
"<",
"TimeInterval",
">",
"gaps",
"=",
"new",
"TreeSet",
... | Gets a set of intervals representing the times that are NOT represented
in this timeline.
@return | [
"Gets",
"a",
"set",
"of",
"intervals",
"representing",
"the",
"times",
"that",
"are",
"NOT",
"represented",
"in",
"this",
"timeline",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/date-gap/src/main/java/org/eobjects/analyzer/beans/dategap/TimeLine.java#L127-L143 | train |
ktoso/janbanery | janbanery-core/src/main/java/pl/project13/janbanery/config/auth/Base64Coder.java | Base64Coder.decode | public static byte[] decode(char[] in, int iOff, int iLen) {
if (iLen % 4 != 0) {
throw new IllegalArgumentException("Length of Base64 encoded input string is not a multiple of 4.");
}
while (iLen > 0 && in[iOff + iLen - 1] == '=') {
iLen--;
}
int oLen = (iLen * 3) / 4;
byte[] out = new byte[oLen];
int ip = iOff;
int iEnd = iOff + iLen;
int op = 0;
while (ip < iEnd) {
int i0 = in[ip++];
int i1 = in[ip++];
int i2 = ip < iEnd ? in[ip++] : 'A';
int i3 = ip < iEnd ? in[ip++] : 'A';
if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127) {
throw new IllegalArgumentException("Illegal character in Base64 encoded data.");
}
int b0 = map2[i0];
int b1 = map2[i1];
int b2 = map2[i2];
int b3 = map2[i3];
if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0) {
throw new IllegalArgumentException("Illegal character in Base64 encoded data.");
}
int o0 = (b0 << 2) | (b1 >>> 4);
int o1 = ((b1 & 0xf) << 4) | (b2 >>> 2);
int o2 = ((b2 & 3) << 6) | b3;
out[op++] = (byte) o0;
if (op < oLen) {
out[op++] = (byte) o1;
}
if (op < oLen) {
out[op++] = (byte) o2;
}
}
return out;
} | java | public static byte[] decode(char[] in, int iOff, int iLen) {
if (iLen % 4 != 0) {
throw new IllegalArgumentException("Length of Base64 encoded input string is not a multiple of 4.");
}
while (iLen > 0 && in[iOff + iLen - 1] == '=') {
iLen--;
}
int oLen = (iLen * 3) / 4;
byte[] out = new byte[oLen];
int ip = iOff;
int iEnd = iOff + iLen;
int op = 0;
while (ip < iEnd) {
int i0 = in[ip++];
int i1 = in[ip++];
int i2 = ip < iEnd ? in[ip++] : 'A';
int i3 = ip < iEnd ? in[ip++] : 'A';
if (i0 > 127 || i1 > 127 || i2 > 127 || i3 > 127) {
throw new IllegalArgumentException("Illegal character in Base64 encoded data.");
}
int b0 = map2[i0];
int b1 = map2[i1];
int b2 = map2[i2];
int b3 = map2[i3];
if (b0 < 0 || b1 < 0 || b2 < 0 || b3 < 0) {
throw new IllegalArgumentException("Illegal character in Base64 encoded data.");
}
int o0 = (b0 << 2) | (b1 >>> 4);
int o1 = ((b1 & 0xf) << 4) | (b2 >>> 2);
int o2 = ((b2 & 3) << 6) | b3;
out[op++] = (byte) o0;
if (op < oLen) {
out[op++] = (byte) o1;
}
if (op < oLen) {
out[op++] = (byte) o2;
}
}
return out;
} | [
"public",
"static",
"byte",
"[",
"]",
"decode",
"(",
"char",
"[",
"]",
"in",
",",
"int",
"iOff",
",",
"int",
"iLen",
")",
"{",
"if",
"(",
"iLen",
"%",
"4",
"!=",
"0",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"Length of Base64 encode... | Decodes a byte array from Base64 format.
No blanks or line breaks are allowed within the Base64 encoded input data.
@param in A character array containing the Base64 encoded data.
@param iOff Offset of the first character in <code>in</code> to be processed.
@param iLen Number of characters to process in <code>in</code>, starting at <code>iOff</code>.
@return An array containing the decoded data bytes.
@throws IllegalArgumentException If the input is not valid Base64 encoded data. | [
"Decodes",
"a",
"byte",
"array",
"from",
"Base64",
"format",
".",
"No",
"blanks",
"or",
"line",
"breaks",
"are",
"allowed",
"within",
"the",
"Base64",
"encoded",
"input",
"data",
"."
] | cd77b774814c7fbb2a0c9c55d4c3f7e76affa636 | https://github.com/ktoso/janbanery/blob/cd77b774814c7fbb2a0c9c55d4c3f7e76affa636/janbanery-core/src/main/java/pl/project13/janbanery/config/auth/Base64Coder.java#L239-L278 | train |
datacleaner/AnalyzerBeans | components/basic-filters/src/main/java/org/eobjects/analyzer/beans/filter/CaptureChangedRecordsFilter.java | CaptureChangedRecordsFilter.getPropertyKey | private String getPropertyKey() {
if (StringUtils.isNullOrEmpty(captureStateIdentifier)) {
if (lastModifiedColumn.isPhysicalColumn()) {
Table table = lastModifiedColumn.getPhysicalColumn().getTable();
if (table != null && !StringUtils.isNullOrEmpty(table.getName())) {
return table.getName() + "." + lastModifiedColumn.getName() + ".GreatestLastModifiedTimestamp";
}
}
return lastModifiedColumn.getName() + ".GreatestLastModifiedTimestamp";
}
return captureStateIdentifier.trim() + ".GreatestLastModifiedTimestamp";
} | java | private String getPropertyKey() {
if (StringUtils.isNullOrEmpty(captureStateIdentifier)) {
if (lastModifiedColumn.isPhysicalColumn()) {
Table table = lastModifiedColumn.getPhysicalColumn().getTable();
if (table != null && !StringUtils.isNullOrEmpty(table.getName())) {
return table.getName() + "." + lastModifiedColumn.getName() + ".GreatestLastModifiedTimestamp";
}
}
return lastModifiedColumn.getName() + ".GreatestLastModifiedTimestamp";
}
return captureStateIdentifier.trim() + ".GreatestLastModifiedTimestamp";
} | [
"private",
"String",
"getPropertyKey",
"(",
")",
"{",
"if",
"(",
"StringUtils",
".",
"isNullOrEmpty",
"(",
"captureStateIdentifier",
")",
")",
"{",
"if",
"(",
"lastModifiedColumn",
".",
"isPhysicalColumn",
"(",
")",
")",
"{",
"Table",
"table",
"=",
"lastModifi... | Gets the key to use in the capture state file. If there is not a
captureStateIdentifier available, we want to avoid using a hardcoded key,
since the same file may be used for multiple purposes, even multiple
filters of the same type. Of course this is not desired configuration,
but may be more convenient for lazy users!
@return | [
"Gets",
"the",
"key",
"to",
"use",
"in",
"the",
"capture",
"state",
"file",
".",
"If",
"there",
"is",
"not",
"a",
"captureStateIdentifier",
"available",
"we",
"want",
"to",
"avoid",
"using",
"a",
"hardcoded",
"key",
"since",
"the",
"same",
"file",
"may",
... | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/basic-filters/src/main/java/org/eobjects/analyzer/beans/filter/CaptureChangedRecordsFilter.java#L145-L156 | train |
datacleaner/AnalyzerBeans | components/javascript/src/main/java/org/eobjects/analyzer/beans/script/JavaScriptUtils.java | JavaScriptUtils.addToScope | public static void addToScope(Scriptable scope, Object object, String... names) {
Object jsObject = Context.javaToJS(object, scope);
for (String name : names) {
name = name.replaceAll(" ", "_");
ScriptableObject.putProperty(scope, name, jsObject);
}
} | java | public static void addToScope(Scriptable scope, Object object, String... names) {
Object jsObject = Context.javaToJS(object, scope);
for (String name : names) {
name = name.replaceAll(" ", "_");
ScriptableObject.putProperty(scope, name, jsObject);
}
} | [
"public",
"static",
"void",
"addToScope",
"(",
"Scriptable",
"scope",
",",
"Object",
"object",
",",
"String",
"...",
"names",
")",
"{",
"Object",
"jsObject",
"=",
"Context",
".",
"javaToJS",
"(",
"object",
",",
"scope",
")",
";",
"for",
"(",
"String",
"n... | Adds an object to the JavaScript scope with a set of variable names
@param scope
@param object
@param names | [
"Adds",
"an",
"object",
"to",
"the",
"JavaScript",
"scope",
"with",
"a",
"set",
"of",
"variable",
"names"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/javascript/src/main/java/org/eobjects/analyzer/beans/script/JavaScriptUtils.java#L48-L54 | train |
datacleaner/AnalyzerBeans | components/javascript/src/main/java/org/eobjects/analyzer/beans/script/JavaScriptUtils.java | JavaScriptUtils.addToScope | public static void addToScope(Scriptable scope, InputRow inputRow, InputColumn<?>[] columns, String arrayName) {
NativeArray values = new NativeArray(columns.length * 2);
for (int i = 0; i < columns.length; i++) {
InputColumn<?> column = columns[i];
Object value = inputRow.getValue(column);
if (value != null) {
Class<?> dataType = column.getDataType();
if (ReflectionUtils.isNumber(dataType)) {
value = Context.toNumber(value);
} else if (ReflectionUtils.isBoolean(dataType)) {
value = Context.toBoolean(value);
}
}
values.put(i, values, value);
values.put(column.getName(), values, value);
addToScope(scope, value, column.getName(), column.getName().toLowerCase(), column.getName().toUpperCase());
}
addToScope(scope, values, arrayName);
} | java | public static void addToScope(Scriptable scope, InputRow inputRow, InputColumn<?>[] columns, String arrayName) {
NativeArray values = new NativeArray(columns.length * 2);
for (int i = 0; i < columns.length; i++) {
InputColumn<?> column = columns[i];
Object value = inputRow.getValue(column);
if (value != null) {
Class<?> dataType = column.getDataType();
if (ReflectionUtils.isNumber(dataType)) {
value = Context.toNumber(value);
} else if (ReflectionUtils.isBoolean(dataType)) {
value = Context.toBoolean(value);
}
}
values.put(i, values, value);
values.put(column.getName(), values, value);
addToScope(scope, value, column.getName(), column.getName().toLowerCase(), column.getName().toUpperCase());
}
addToScope(scope, values, arrayName);
} | [
"public",
"static",
"void",
"addToScope",
"(",
"Scriptable",
"scope",
",",
"InputRow",
"inputRow",
",",
"InputColumn",
"<",
"?",
">",
"[",
"]",
"columns",
",",
"String",
"arrayName",
")",
"{",
"NativeArray",
"values",
"=",
"new",
"NativeArray",
"(",
"columns... | Adds the values of a row to the JavaScript scope
@param scope
@param inputRow
@param columns
@param arrayName | [
"Adds",
"the",
"values",
"of",
"a",
"row",
"to",
"the",
"JavaScript",
"scope"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/javascript/src/main/java/org/eobjects/analyzer/beans/script/JavaScriptUtils.java#L64-L86 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java | EnhancedMimeType.getEncoding | @Nullable
public final Charset getEncoding() {
final String parameter = getParameter(ENCODING);
if (parameter == null) {
return null;
}
return Charset.forName(parameter);
} | java | @Nullable
public final Charset getEncoding() {
final String parameter = getParameter(ENCODING);
if (parameter == null) {
return null;
}
return Charset.forName(parameter);
} | [
"@",
"Nullable",
"public",
"final",
"Charset",
"getEncoding",
"(",
")",
"{",
"final",
"String",
"parameter",
"=",
"getParameter",
"(",
"ENCODING",
")",
";",
"if",
"(",
"parameter",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"return",
"Charset",
... | Returns the encoding from the parameters.
@return Encoding or <code>null</code> as default if not available. | [
"Returns",
"the",
"encoding",
"from",
"the",
"parameters",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java#L181-L188 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java | EnhancedMimeType.matchEncoding | public final boolean matchEncoding(final EnhancedMimeType other) {
return match(other) && Objects.equals(getEncoding(), other.getEncoding());
} | java | public final boolean matchEncoding(final EnhancedMimeType other) {
return match(other) && Objects.equals(getEncoding(), other.getEncoding());
} | [
"public",
"final",
"boolean",
"matchEncoding",
"(",
"final",
"EnhancedMimeType",
"other",
")",
"{",
"return",
"match",
"(",
"other",
")",
"&&",
"Objects",
".",
"equals",
"(",
"getEncoding",
"(",
")",
",",
"other",
".",
"getEncoding",
"(",
")",
")",
";",
... | Determine if the primary, sub type and encoding of this object is the same as what is in the given
type.
@param other
The MimeType object to compare with.
@return True if they match. | [
"Determine",
"if",
"the",
"primary",
"sub",
"type",
"and",
"encoding",
"of",
"this",
"object",
"is",
"the",
"same",
"as",
"what",
"is",
"in",
"the",
"given",
"type",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java#L217-L220 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java | EnhancedMimeType.create | @Nullable
public static EnhancedMimeType create(@Nullable final String str) {
if (str == null) {
return null;
}
try {
return new EnhancedMimeType(str);
} catch (final MimeTypeParseException ex) {
throw new RuntimeException("Failed to create versioned mime type: " + str, ex);
}
} | java | @Nullable
public static EnhancedMimeType create(@Nullable final String str) {
if (str == null) {
return null;
}
try {
return new EnhancedMimeType(str);
} catch (final MimeTypeParseException ex) {
throw new RuntimeException("Failed to create versioned mime type: " + str, ex);
}
} | [
"@",
"Nullable",
"public",
"static",
"EnhancedMimeType",
"create",
"(",
"@",
"Nullable",
"final",
"String",
"str",
")",
"{",
"if",
"(",
"str",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"try",
"{",
"return",
"new",
"EnhancedMimeType",
"(",
"str"... | Creates an instance with all data. Exceptions are wrapped to runtime exceptions.
@param str
Contains base type, sub type, version and parameters.
@return New instance. | [
"Creates",
"an",
"instance",
"with",
"all",
"data",
".",
"Exceptions",
"are",
"wrapped",
"to",
"runtime",
"exceptions",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java#L230-L240 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java | EnhancedMimeType.create | @NotNull
public static EnhancedMimeType create(@NotNull final String primary, @NotNull final String sub,
final Charset encoding, final String version) {
return create(primary, sub, encoding, version, new HashMap<String, String>());
} | java | @NotNull
public static EnhancedMimeType create(@NotNull final String primary, @NotNull final String sub,
final Charset encoding, final String version) {
return create(primary, sub, encoding, version, new HashMap<String, String>());
} | [
"@",
"NotNull",
"public",
"static",
"EnhancedMimeType",
"create",
"(",
"@",
"NotNull",
"final",
"String",
"primary",
",",
"@",
"NotNull",
"final",
"String",
"sub",
",",
"final",
"Charset",
"encoding",
",",
"final",
"String",
"version",
")",
"{",
"return",
"c... | Creates an instance with primary, sub type, encoding and version. Exceptions are wrapped to runtime
exceptions.
@param primary
Primary type.
@param sub
Sub type.
@param encoding
Encoding.
@param version
Version.
@return New instance. | [
"Creates",
"an",
"instance",
"with",
"primary",
"sub",
"type",
"encoding",
"and",
"version",
".",
"Exceptions",
"are",
"wrapped",
"to",
"runtime",
"exceptions",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java#L292-L296 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java | EnhancedMimeType.create | @NotNull
public static EnhancedMimeType create(@NotNull final String primary, @NotNull final String sub,
final Charset encoding, final String version, final Map<String, String> parameters) {
try {
return new EnhancedMimeType(primary, sub, encoding, version, parameters);
} catch (final MimeTypeParseException ex) {
throw new RuntimeException("Failed to create versioned mime type: " + primary + "/" + sub, ex);
}
} | java | @NotNull
public static EnhancedMimeType create(@NotNull final String primary, @NotNull final String sub,
final Charset encoding, final String version, final Map<String, String> parameters) {
try {
return new EnhancedMimeType(primary, sub, encoding, version, parameters);
} catch (final MimeTypeParseException ex) {
throw new RuntimeException("Failed to create versioned mime type: " + primary + "/" + sub, ex);
}
} | [
"@",
"NotNull",
"public",
"static",
"EnhancedMimeType",
"create",
"(",
"@",
"NotNull",
"final",
"String",
"primary",
",",
"@",
"NotNull",
"final",
"String",
"sub",
",",
"final",
"Charset",
"encoding",
",",
"final",
"String",
"version",
",",
"final",
"Map",
"... | Creates an instance with all data and exceptions wrapped to runtime exceptions.
@param primary
Primary type.
@param sub
Sub type.
@param encoding
Encoding.
@param version
Version.
@param parameters
Additional parameters.
@return New instance. | [
"Creates",
"an",
"instance",
"with",
"all",
"data",
"and",
"exceptions",
"wrapped",
"to",
"runtime",
"exceptions",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EnhancedMimeType.java#L314-L322 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/JsonbDeSerializer.java | JsonbDeSerializer.init | public void init(final SerializedDataTypeRegistry typeRegistry, final DeserializerRegistry deserRegistry,
final SerializerRegistry serRegistry) {
if (initialized) {
throw new IllegalStateException("Instance already initialized - Don't call the init methods more than once");
}
this.typeRegistry = typeRegistry;
for (final JsonbDeserializer<?> deserializer : deserializers) {
if (deserializer instanceof DeserializerRegistryRequired) {
if (deserRegistry == null) {
throw new IllegalStateException(
"There is at least one deserializer that requires a 'DeserializerRegistry', but you didn't provide one (deserializer="
+ deserializer.getClass().getName() + ")");
}
final DeserializerRegistryRequired des = (DeserializerRegistryRequired) deserializer;
des.setRegistry(deserRegistry);
}
if (deserializer instanceof SerializedDataTypeRegistryRequired) {
if (typeRegistry == null) {
throw new IllegalStateException(
"There is at least one deserializer that requires a 'SerializedDataTypeRegistry', but you didn't provide one (deserializer="
+ deserializer.getClass().getName() + ")");
}
final SerializedDataTypeRegistryRequired des = (SerializedDataTypeRegistryRequired) deserializer;
des.setRegistry(typeRegistry);
}
}
for (final JsonbSerializer<?> serializer : serializers) {
if (serializer instanceof SerializerRegistryRequired) {
if (serRegistry == null) {
throw new IllegalStateException(
"There is at least one serializer that requires a 'SerializerRegistry', but you didn't provide one (serializer="
+ serializer.getClass().getName() + ")");
}
final SerializerRegistryRequired ser = (SerializerRegistryRequired) serializer;
ser.setRegistry(serRegistry);
}
if (serializer instanceof SerializedDataTypeRegistryRequired) {
if (typeRegistry == null) {
throw new IllegalStateException(
"There is at least one serializer that requires a 'SerializedDataTypeRegistry', but you didn't provide one (serializer="
+ serializer.getClass().getName() + ")");
}
final SerializedDataTypeRegistryRequired ser = (SerializedDataTypeRegistryRequired) serializer;
ser.setRegistry(typeRegistry);
}
}
initialized = true;
} | java | public void init(final SerializedDataTypeRegistry typeRegistry, final DeserializerRegistry deserRegistry,
final SerializerRegistry serRegistry) {
if (initialized) {
throw new IllegalStateException("Instance already initialized - Don't call the init methods more than once");
}
this.typeRegistry = typeRegistry;
for (final JsonbDeserializer<?> deserializer : deserializers) {
if (deserializer instanceof DeserializerRegistryRequired) {
if (deserRegistry == null) {
throw new IllegalStateException(
"There is at least one deserializer that requires a 'DeserializerRegistry', but you didn't provide one (deserializer="
+ deserializer.getClass().getName() + ")");
}
final DeserializerRegistryRequired des = (DeserializerRegistryRequired) deserializer;
des.setRegistry(deserRegistry);
}
if (deserializer instanceof SerializedDataTypeRegistryRequired) {
if (typeRegistry == null) {
throw new IllegalStateException(
"There is at least one deserializer that requires a 'SerializedDataTypeRegistry', but you didn't provide one (deserializer="
+ deserializer.getClass().getName() + ")");
}
final SerializedDataTypeRegistryRequired des = (SerializedDataTypeRegistryRequired) deserializer;
des.setRegistry(typeRegistry);
}
}
for (final JsonbSerializer<?> serializer : serializers) {
if (serializer instanceof SerializerRegistryRequired) {
if (serRegistry == null) {
throw new IllegalStateException(
"There is at least one serializer that requires a 'SerializerRegistry', but you didn't provide one (serializer="
+ serializer.getClass().getName() + ")");
}
final SerializerRegistryRequired ser = (SerializerRegistryRequired) serializer;
ser.setRegistry(serRegistry);
}
if (serializer instanceof SerializedDataTypeRegistryRequired) {
if (typeRegistry == null) {
throw new IllegalStateException(
"There is at least one serializer that requires a 'SerializedDataTypeRegistry', but you didn't provide one (serializer="
+ serializer.getClass().getName() + ")");
}
final SerializedDataTypeRegistryRequired ser = (SerializedDataTypeRegistryRequired) serializer;
ser.setRegistry(typeRegistry);
}
}
initialized = true;
} | [
"public",
"void",
"init",
"(",
"final",
"SerializedDataTypeRegistry",
"typeRegistry",
",",
"final",
"DeserializerRegistry",
"deserRegistry",
",",
"final",
"SerializerRegistry",
"serRegistry",
")",
"{",
"if",
"(",
"initialized",
")",
"{",
"throw",
"new",
"IllegalStateE... | Initializes the instance with necessary registries.
@param typeRegistry
Mapping from type name to type class.
@param deserRegistry
Mapping from type name to deserializers.
@param serRegistry
Mapping from type name to serializers. | [
"Initializes",
"the",
"instance",
"with",
"necessary",
"registries",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/JsonbDeSerializer.java#L196-L243 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/convert/DelegatingConverter.java | DelegatingConverter.initializeAll | public void initializeAll(InjectionManager injectionManager) {
if (injectionManager != null) {
for (Converter<?> converter : _converters) {
Field[] fields = ReflectionUtils.getFields(converter.getClass(), Inject.class);
for (Field field : fields) {
final Object value;
if (field.getType() == Converter.class) {
// Injected converters are used as callbacks. They
// should be assigned to the outer converter, which is
// this.
value = this;
} else {
InjectionPoint<Object> injectionPoint = new MemberInjectionPoint<Object>(field, converter);
value = injectionManager.getInstance(injectionPoint);
}
field.setAccessible(true);
try {
field.set(converter, value);
} catch (Exception e) {
throw new IllegalStateException("Could not initialize converter: " + converter, e);
}
}
}
}
} | java | public void initializeAll(InjectionManager injectionManager) {
if (injectionManager != null) {
for (Converter<?> converter : _converters) {
Field[] fields = ReflectionUtils.getFields(converter.getClass(), Inject.class);
for (Field field : fields) {
final Object value;
if (field.getType() == Converter.class) {
// Injected converters are used as callbacks. They
// should be assigned to the outer converter, which is
// this.
value = this;
} else {
InjectionPoint<Object> injectionPoint = new MemberInjectionPoint<Object>(field, converter);
value = injectionManager.getInstance(injectionPoint);
}
field.setAccessible(true);
try {
field.set(converter, value);
} catch (Exception e) {
throw new IllegalStateException("Could not initialize converter: " + converter, e);
}
}
}
}
} | [
"public",
"void",
"initializeAll",
"(",
"InjectionManager",
"injectionManager",
")",
"{",
"if",
"(",
"injectionManager",
"!=",
"null",
")",
"{",
"for",
"(",
"Converter",
"<",
"?",
">",
"converter",
":",
"_converters",
")",
"{",
"Field",
"[",
"]",
"fields",
... | Initializes all converters contained with injections
@param injectionManager | [
"Initializes",
"all",
"converters",
"contained",
"with",
"injections"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/convert/DelegatingConverter.java#L167-L191 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/ReflectionUtils.java | ReflectionUtils.getMethods | public static Method[] getMethods(Class<?> clazz) {
final boolean legacyApproach = isGetMethodsLegacyApproach();
final List<Method> allMethods = new ArrayList<>();
addMethods(allMethods, clazz, legacyApproach);
return allMethods.toArray(new Method[allMethods.size()]);
} | java | public static Method[] getMethods(Class<?> clazz) {
final boolean legacyApproach = isGetMethodsLegacyApproach();
final List<Method> allMethods = new ArrayList<>();
addMethods(allMethods, clazz, legacyApproach);
return allMethods.toArray(new Method[allMethods.size()]);
} | [
"public",
"static",
"Method",
"[",
"]",
"getMethods",
"(",
"Class",
"<",
"?",
">",
"clazz",
")",
"{",
"final",
"boolean",
"legacyApproach",
"=",
"isGetMethodsLegacyApproach",
"(",
")",
";",
"final",
"List",
"<",
"Method",
">",
"allMethods",
"=",
"new",
"Ar... | Gets all methods of a class, excluding those from Object.
Warning: This method's result varies slightly on Java 7 and on Java 8.
With Java 8 overridden methods are properly removed from the result, and
inherited annotations thus also available from the result. On Java 7,
overridden methods will be returned multiple times.
@see #isGetMethodsLegacyApproach()
@param clazz
@return | [
"Gets",
"all",
"methods",
"of",
"a",
"class",
"excluding",
"those",
"from",
"Object",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/ReflectionUtils.java#L499-L506 | train |
ktoso/janbanery | janbanery-android/src/main/java/pl/project13/janbanery/android/util/Strings.java | Strings.joinAnd | public static <T> String joinAnd(final String delimiter, final String lastDelimiter, final Collection<T> objs) {
if (objs == null || objs.isEmpty()) {
return "";
}
final Iterator<T> iter = objs.iterator();
final StringBuffer buffer = new StringBuffer(Strings.toString(iter.next()));
int i = 1;
while (iter.hasNext()) {
final T obj = iter.next();
if (notEmpty(obj)) {
buffer.append(++i == objs.size() ? lastDelimiter : delimiter).append(Strings.toString(obj));
}
}
return buffer.toString();
} | java | public static <T> String joinAnd(final String delimiter, final String lastDelimiter, final Collection<T> objs) {
if (objs == null || objs.isEmpty()) {
return "";
}
final Iterator<T> iter = objs.iterator();
final StringBuffer buffer = new StringBuffer(Strings.toString(iter.next()));
int i = 1;
while (iter.hasNext()) {
final T obj = iter.next();
if (notEmpty(obj)) {
buffer.append(++i == objs.size() ? lastDelimiter : delimiter).append(Strings.toString(obj));
}
}
return buffer.toString();
} | [
"public",
"static",
"<",
"T",
">",
"String",
"joinAnd",
"(",
"final",
"String",
"delimiter",
",",
"final",
"String",
"lastDelimiter",
",",
"final",
"Collection",
"<",
"T",
">",
"objs",
")",
"{",
"if",
"(",
"objs",
"==",
"null",
"||",
"objs",
".",
"isEm... | Like join, but allows for a distinct final delimiter. For english sentences such
as "Alice, Bob and Charlie" use ", " and " and " as the delimiters.
@param delimiter usually ", "
@param lastDelimiter usually " and "
@param objs the objects
@param <T> the type
@return a string | [
"Like",
"join",
"but",
"allows",
"for",
"a",
"distinct",
"final",
"delimiter",
".",
"For",
"english",
"sentences",
"such",
"as",
"Alice",
"Bob",
"and",
"Charlie",
"use",
"and",
"and",
"as",
"the",
"delimiters",
"."
] | cd77b774814c7fbb2a0c9c55d4c3f7e76affa636 | https://github.com/ktoso/janbanery/blob/cd77b774814c7fbb2a0c9c55d4c3f7e76affa636/janbanery-android/src/main/java/pl/project13/janbanery/android/util/Strings.java#L28-L43 | train |
fuinorg/event-store-commons | eshttp/src/main/java/org/fuin/esc/eshttp/ProjectionJavaScriptBuilder.java | ProjectionJavaScriptBuilder.type | public final ProjectionJavaScriptBuilder type(final String eventType) {
if (count > 0) {
sb.append(",");
}
sb.append("'" + eventType + "': function(state, ev) { linkTo('" + projection + "', ev); }");
count++;
return this;
} | java | public final ProjectionJavaScriptBuilder type(final String eventType) {
if (count > 0) {
sb.append(",");
}
sb.append("'" + eventType + "': function(state, ev) { linkTo('" + projection + "', ev); }");
count++;
return this;
} | [
"public",
"final",
"ProjectionJavaScriptBuilder",
"type",
"(",
"final",
"String",
"eventType",
")",
"{",
"if",
"(",
"count",
">",
"0",
")",
"{",
"sb",
".",
"append",
"(",
"\",\"",
")",
";",
"}",
"sb",
".",
"append",
"(",
"\"'\"",
"+",
"eventType",
"+",... | Adds another type to select.
@param eventType
Unique event type to select from the category of streams.
@return this. | [
"Adds",
"another",
"type",
"to",
"select",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/eshttp/src/main/java/org/fuin/esc/eshttp/ProjectionJavaScriptBuilder.java#L96-L103 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/Events.java | Events.asCommonEvents | public List<CommonEvent> asCommonEvents(final JAXBContext ctx) {
final List<CommonEvent> list = new ArrayList<CommonEvent>();
for (final Event event : events) {
list.add(event.asCommonEvent(ctx));
}
return list;
} | java | public List<CommonEvent> asCommonEvents(final JAXBContext ctx) {
final List<CommonEvent> list = new ArrayList<CommonEvent>();
for (final Event event : events) {
list.add(event.asCommonEvent(ctx));
}
return list;
} | [
"public",
"List",
"<",
"CommonEvent",
">",
"asCommonEvents",
"(",
"final",
"JAXBContext",
"ctx",
")",
"{",
"final",
"List",
"<",
"CommonEvent",
">",
"list",
"=",
"new",
"ArrayList",
"<",
"CommonEvent",
">",
"(",
")",
";",
"for",
"(",
"final",
"Event",
"e... | Returns this object as a list of common event objects.
@param ctx
In case the XML JAXB unmarshalling is used, you have to pass
the JAXB context here.
@return Converted list. | [
"Returns",
"this",
"object",
"as",
"a",
"list",
"of",
"common",
"event",
"objects",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/Events.java#L108-L114 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/IdentifierHelper.java | IdentifierHelper.isValid | public static boolean isValid(String name) {
char[] nameChars = name.toCharArray();
for (int i = 0; i < nameChars.length; i++) {
boolean valid = i == 0 ? Character.isJavaIdentifierStart(nameChars[i]) : Character.isJavaIdentifierPart(nameChars[i]);
if (!valid) {
return valid;
}
}
return true;
} | java | public static boolean isValid(String name) {
char[] nameChars = name.toCharArray();
for (int i = 0; i < nameChars.length; i++) {
boolean valid = i == 0 ? Character.isJavaIdentifierStart(nameChars[i]) : Character.isJavaIdentifierPart(nameChars[i]);
if (!valid) {
return valid;
}
}
return true;
} | [
"public",
"static",
"boolean",
"isValid",
"(",
"String",
"name",
")",
"{",
"char",
"[",
"]",
"nameChars",
"=",
"name",
".",
"toCharArray",
"(",
")",
";",
"for",
"(",
"int",
"i",
"=",
"0",
";",
"i",
"<",
"nameChars",
".",
"length",
";",
"i",
"++",
... | Test if an identifier is valid.
@param name the name
@return true/false | [
"Test",
"if",
"an",
"identifier",
"is",
"valid",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/IdentifierHelper.java#L19-L28 | train |
ixa-ehu/kaflib | src/main/java/ixa/kaflib/AnnotationContainer.java | AnnotationContainer.getParaSents | List<Integer> getParaSents(Integer para) {
List<Integer> sentList = new ArrayList<Integer>(this.paraSentIndex.get(para));
Collections.sort(sentList);
return sentList;
} | java | List<Integer> getParaSents(Integer para) {
List<Integer> sentList = new ArrayList<Integer>(this.paraSentIndex.get(para));
Collections.sort(sentList);
return sentList;
} | [
"List",
"<",
"Integer",
">",
"getParaSents",
"(",
"Integer",
"para",
")",
"{",
"List",
"<",
"Integer",
">",
"sentList",
"=",
"new",
"ArrayList",
"<",
"Integer",
">",
"(",
"this",
".",
"paraSentIndex",
".",
"get",
"(",
"para",
")",
")",
";",
"Collection... | Returns all sentences in a paragraph.
@param para The paragraph
@return | [
"Returns",
"all",
"sentences",
"in",
"a",
"paragraph",
"."
] | 3921f55d9ae4621736a329418f6334fb721834b8 | https://github.com/ixa-ehu/kaflib/blob/3921f55d9ae4621736a329418f6334fb721834b8/src/main/java/ixa/kaflib/AnnotationContainer.java#L211-L215 | train |
ixa-ehu/kaflib | src/main/java/ixa/kaflib/AnnotationContainer.java | AnnotationContainer.getSentences | List<List<Annotation>> getSentences(AnnotationType type, String groupID) {
List<List<Annotation>> sentences = new ArrayList<List<Annotation>>();
for (int sent : Helper.getIndexKeys(type, groupID, this.sentIndex)) {
sentences.add(this.getSentAnnotations(sent, type));
}
return sentences;
} | java | List<List<Annotation>> getSentences(AnnotationType type, String groupID) {
List<List<Annotation>> sentences = new ArrayList<List<Annotation>>();
for (int sent : Helper.getIndexKeys(type, groupID, this.sentIndex)) {
sentences.add(this.getSentAnnotations(sent, type));
}
return sentences;
} | [
"List",
"<",
"List",
"<",
"Annotation",
">",
">",
"getSentences",
"(",
"AnnotationType",
"type",
",",
"String",
"groupID",
")",
"{",
"List",
"<",
"List",
"<",
"Annotation",
">>",
"sentences",
"=",
"new",
"ArrayList",
"<",
"List",
"<",
"Annotation",
">",
... | Return all annotations of type "type" classified into sentences | [
"Return",
"all",
"annotations",
"of",
"type",
"type",
"classified",
"into",
"sentences"
] | 3921f55d9ae4621736a329418f6334fb721834b8 | https://github.com/ixa-ehu/kaflib/blob/3921f55d9ae4621736a329418f6334fb721834b8/src/main/java/ixa/kaflib/AnnotationContainer.java#L248-L254 | train |
ixa-ehu/kaflib | src/main/java/ixa/kaflib/AnnotationContainer.java | AnnotationContainer.getParagraphs | List<List<Annotation>> getParagraphs(AnnotationType type, String groupID) {
List<List<Annotation>> paragraphs = new ArrayList<List<Annotation>>();
for (int para : Helper.getIndexKeys(type, groupID, this.paraIndex)) {
paragraphs.add(this.getParaAnnotations(para, type));
}
return paragraphs;
} | java | List<List<Annotation>> getParagraphs(AnnotationType type, String groupID) {
List<List<Annotation>> paragraphs = new ArrayList<List<Annotation>>();
for (int para : Helper.getIndexKeys(type, groupID, this.paraIndex)) {
paragraphs.add(this.getParaAnnotations(para, type));
}
return paragraphs;
} | [
"List",
"<",
"List",
"<",
"Annotation",
">",
">",
"getParagraphs",
"(",
"AnnotationType",
"type",
",",
"String",
"groupID",
")",
"{",
"List",
"<",
"List",
"<",
"Annotation",
">>",
"paragraphs",
"=",
"new",
"ArrayList",
"<",
"List",
"<",
"Annotation",
">",
... | Return all annotations of type "type" classified into paragraphs | [
"Return",
"all",
"annotations",
"of",
"type",
"type",
"classified",
"into",
"paragraphs"
] | 3921f55d9ae4621736a329418f6334fb721834b8 | https://github.com/ixa-ehu/kaflib/blob/3921f55d9ae4621736a329418f6334fb721834b8/src/main/java/ixa/kaflib/AnnotationContainer.java#L262-L268 | train |
fuinorg/event-store-commons | jpa/src/main/java/org/fuin/esc/jpa/JpaUtils.java | JpaUtils.streamEntityName | public static String streamEntityName(final StreamId streamId) {
// User defined ID
if (streamId instanceof JpaStreamId) {
final JpaStreamId jpaId = (JpaStreamId) streamId;
return jpaId.getEntityName();
}
// Default ID
if (streamId.isProjection()) {
return streamId.getName();
}
if (streamId.getParameters().size() == 0) {
return NoParamsStream.class.getSimpleName();
}
return streamId.getName() + "Stream";
} | java | public static String streamEntityName(final StreamId streamId) {
// User defined ID
if (streamId instanceof JpaStreamId) {
final JpaStreamId jpaId = (JpaStreamId) streamId;
return jpaId.getEntityName();
}
// Default ID
if (streamId.isProjection()) {
return streamId.getName();
}
if (streamId.getParameters().size() == 0) {
return NoParamsStream.class.getSimpleName();
}
return streamId.getName() + "Stream";
} | [
"public",
"static",
"String",
"streamEntityName",
"(",
"final",
"StreamId",
"streamId",
")",
"{",
"// User defined ID",
"if",
"(",
"streamId",
"instanceof",
"JpaStreamId",
")",
"{",
"final",
"JpaStreamId",
"jpaId",
"=",
"(",
"JpaStreamId",
")",
"streamId",
";",
... | Returns the name of the stream entity for a given stream.
@param streamId
Identifier of the stream to return a stream entity name for.
@return Name of the entity (simple class name). | [
"Returns",
"the",
"name",
"of",
"the",
"stream",
"entity",
"for",
"a",
"given",
"stream",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/jpa/src/main/java/org/fuin/esc/jpa/JpaUtils.java#L40-L54 | train |
fuinorg/event-store-commons | jpa/src/main/java/org/fuin/esc/jpa/JpaUtils.java | JpaUtils.nativeEventsTableName | public static String nativeEventsTableName(final StreamId streamId) {
// User defined ID
if (streamId instanceof JpaStreamId) {
final JpaStreamId jpaId = (JpaStreamId) streamId;
return jpaId.getNativeTableName();
}
// Default ID
if (streamId.isProjection()) {
return camel2Underscore(streamId.getName());
}
if (streamId.getParameters().size() == 0) {
return NoParamsEvent.NO_PARAMS_EVENTS_TABLE;
}
return camel2Underscore(streamId.getName()) + "_events";
} | java | public static String nativeEventsTableName(final StreamId streamId) {
// User defined ID
if (streamId instanceof JpaStreamId) {
final JpaStreamId jpaId = (JpaStreamId) streamId;
return jpaId.getNativeTableName();
}
// Default ID
if (streamId.isProjection()) {
return camel2Underscore(streamId.getName());
}
if (streamId.getParameters().size() == 0) {
return NoParamsEvent.NO_PARAMS_EVENTS_TABLE;
}
return camel2Underscore(streamId.getName()) + "_events";
} | [
"public",
"static",
"String",
"nativeEventsTableName",
"(",
"final",
"StreamId",
"streamId",
")",
"{",
"// User defined ID",
"if",
"(",
"streamId",
"instanceof",
"JpaStreamId",
")",
"{",
"final",
"JpaStreamId",
"jpaId",
"=",
"(",
"JpaStreamId",
")",
"streamId",
";... | Returns a native database events table name.
@param streamId Unique stream identifier.
@return Name that is configured in the {@link javax.persistence.Table} JPA annotation. | [
"Returns",
"a",
"native",
"database",
"events",
"table",
"name",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/jpa/src/main/java/org/fuin/esc/jpa/JpaUtils.java#L63-L77 | train |
fuinorg/event-store-commons | jpa/src/main/java/org/fuin/esc/jpa/JpaUtils.java | JpaUtils.camel2Underscore | public static String camel2Underscore(@Nullable final String name) {
if (name == null) {
return null;
}
return name.replaceAll("(.)(\\p{Upper})", "$1_$2").toLowerCase();
} | java | public static String camel2Underscore(@Nullable final String name) {
if (name == null) {
return null;
}
return name.replaceAll("(.)(\\p{Upper})", "$1_$2").toLowerCase();
} | [
"public",
"static",
"String",
"camel2Underscore",
"(",
"@",
"Nullable",
"final",
"String",
"name",
")",
"{",
"if",
"(",
"name",
"==",
"null",
")",
"{",
"return",
"null",
";",
"}",
"return",
"name",
".",
"replaceAll",
"(",
"\"(.)(\\\\p{Upper})\"",
",",
"\"$... | Converts the given camel case name into a name with underscores.
@param name Name to convert.
@return Camel case replaced with underscores. | [
"Converts",
"the",
"given",
"camel",
"case",
"name",
"into",
"a",
"name",
"with",
"underscores",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/jpa/src/main/java/org/fuin/esc/jpa/JpaUtils.java#L86-L91 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/Event.java | Event.asCommonEvent | public final CommonEvent asCommonEvent(final JAXBContext ctx) {
final Object m;
if (getMeta() == null) {
m = null;
} else {
m = getMeta().unmarshalContent(ctx);
}
final Object d = getData().unmarshalContent(ctx);
if (getMeta() == null) {
return new SimpleCommonEvent(getId(),
new TypeName(getData().getType()), d);
}
return new SimpleCommonEvent(getId(), new TypeName(getData().getType()),
d, new TypeName(getMeta().getType()), m);
} | java | public final CommonEvent asCommonEvent(final JAXBContext ctx) {
final Object m;
if (getMeta() == null) {
m = null;
} else {
m = getMeta().unmarshalContent(ctx);
}
final Object d = getData().unmarshalContent(ctx);
if (getMeta() == null) {
return new SimpleCommonEvent(getId(),
new TypeName(getData().getType()), d);
}
return new SimpleCommonEvent(getId(), new TypeName(getData().getType()),
d, new TypeName(getMeta().getType()), m);
} | [
"public",
"final",
"CommonEvent",
"asCommonEvent",
"(",
"final",
"JAXBContext",
"ctx",
")",
"{",
"final",
"Object",
"m",
";",
"if",
"(",
"getMeta",
"(",
")",
"==",
"null",
")",
"{",
"m",
"=",
"null",
";",
"}",
"else",
"{",
"m",
"=",
"getMeta",
"(",
... | Returns this object as a common event object.
@param ctx
In case the XML JAXB unmarshalling is used, you have to pass
the JAXB context here.
@return Converted object. | [
"Returns",
"this",
"object",
"as",
"a",
"common",
"event",
"object",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/Event.java#L149-L163 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/Event.java | Event.valueOf | public static Event valueOf(final CommonEvent selEvent) {
final Data data = Data.valueOf(selEvent.getDataType().asBaseType(),
selEvent.getData());
if (selEvent.getMeta() == null) {
return new Event(selEvent.getId(), data);
}
final Data meta = Data.valueOf("meta", selEvent.getMeta());
return new Event(selEvent.getId(), data, meta);
} | java | public static Event valueOf(final CommonEvent selEvent) {
final Data data = Data.valueOf(selEvent.getDataType().asBaseType(),
selEvent.getData());
if (selEvent.getMeta() == null) {
return new Event(selEvent.getId(), data);
}
final Data meta = Data.valueOf("meta", selEvent.getMeta());
return new Event(selEvent.getId(), data, meta);
} | [
"public",
"static",
"Event",
"valueOf",
"(",
"final",
"CommonEvent",
"selEvent",
")",
"{",
"final",
"Data",
"data",
"=",
"Data",
".",
"valueOf",
"(",
"selEvent",
".",
"getDataType",
"(",
")",
".",
"asBaseType",
"(",
")",
",",
"selEvent",
".",
"getData",
... | Creates an event using a common event.
@param selEvent
Event to copy.
@return New instance. | [
"Creates",
"an",
"event",
"using",
"a",
"common",
"event",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/Event.java#L208-L216 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/job/builder/AnalysisJobBuilder.java | AnalysisJobBuilder.isConfigured | public boolean isConfigured(final boolean throwException) throws IllegalStateException,
UnconfiguredConfiguredPropertyException {
if (_datastoreConnection == null) {
if (throwException) {
throw new IllegalStateException("No Datastore or DatastoreConnection set");
}
return false;
}
if (_sourceColumns.isEmpty()) {
if (throwException) {
throw new IllegalStateException("No source columns in job");
}
return false;
}
if (_analyzerJobBuilders.isEmpty()) {
if (throwException) {
throw new IllegalStateException("No Analyzers in job");
}
return false;
}
for (FilterJobBuilder<?, ?> fjb : _filterJobBuilders) {
if (!fjb.isConfigured(throwException)) {
return false;
}
}
for (TransformerJobBuilder<?> tjb : _transformerJobBuilders) {
if (!tjb.isConfigured(throwException)) {
return false;
}
}
for (AnalyzerJobBuilder<?> ajb : _analyzerJobBuilders) {
if (!ajb.isConfigured(throwException)) {
return false;
}
}
return true;
} | java | public boolean isConfigured(final boolean throwException) throws IllegalStateException,
UnconfiguredConfiguredPropertyException {
if (_datastoreConnection == null) {
if (throwException) {
throw new IllegalStateException("No Datastore or DatastoreConnection set");
}
return false;
}
if (_sourceColumns.isEmpty()) {
if (throwException) {
throw new IllegalStateException("No source columns in job");
}
return false;
}
if (_analyzerJobBuilders.isEmpty()) {
if (throwException) {
throw new IllegalStateException("No Analyzers in job");
}
return false;
}
for (FilterJobBuilder<?, ?> fjb : _filterJobBuilders) {
if (!fjb.isConfigured(throwException)) {
return false;
}
}
for (TransformerJobBuilder<?> tjb : _transformerJobBuilders) {
if (!tjb.isConfigured(throwException)) {
return false;
}
}
for (AnalyzerJobBuilder<?> ajb : _analyzerJobBuilders) {
if (!ajb.isConfigured(throwException)) {
return false;
}
}
return true;
} | [
"public",
"boolean",
"isConfigured",
"(",
"final",
"boolean",
"throwException",
")",
"throws",
"IllegalStateException",
",",
"UnconfiguredConfiguredPropertyException",
"{",
"if",
"(",
"_datastoreConnection",
"==",
"null",
")",
"{",
"if",
"(",
"throwException",
")",
"{... | Used to verify whether or not the builder's configuration is valid and
all properties are satisfied.
@param throwException
whether or not an exception should be thrown in case of
invalid configuration. Typically an exception message will
contain more detailed information about the cause of the
validation error, whereas a boolean contains no details.
@return true if the analysis job builder is correctly configured
@throws IllegalStateException | [
"Used",
"to",
"verify",
"whether",
"or",
"not",
"the",
"builder",
"s",
"configuration",
"is",
"valid",
"and",
"all",
"properties",
"are",
"satisfied",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/job/builder/AnalysisJobBuilder.java#L595-L637 | train |
datacleaner/AnalyzerBeans | env/berkeleydb/src/main/java/org/eobjects/analyzer/storage/BerkeleyDbStorageProvider.java | BerkeleyDbStorageProvider.delete | private void delete(File file) {
if (file.isDirectory()) {
File[] children = file.listFiles();
for (File child : children) {
delete(child);
}
}
if (!file.delete()) {
if (!file.isDirectory()) {
logger.warn("Unable to clean/delete file: {}", file);
} else {
logger.debug("Unable to clean/delete directory: {}", file);
}
}
} | java | private void delete(File file) {
if (file.isDirectory()) {
File[] children = file.listFiles();
for (File child : children) {
delete(child);
}
}
if (!file.delete()) {
if (!file.isDirectory()) {
logger.warn("Unable to clean/delete file: {}", file);
} else {
logger.debug("Unable to clean/delete directory: {}", file);
}
}
} | [
"private",
"void",
"delete",
"(",
"File",
"file",
")",
"{",
"if",
"(",
"file",
".",
"isDirectory",
"(",
")",
")",
"{",
"File",
"[",
"]",
"children",
"=",
"file",
".",
"listFiles",
"(",
")",
";",
"for",
"(",
"File",
"child",
":",
"children",
")",
... | Recursively deletes a directory and all it's files
@param file | [
"Recursively",
"deletes",
"a",
"directory",
"and",
"all",
"it",
"s",
"files"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/env/berkeleydb/src/main/java/org/eobjects/analyzer/storage/BerkeleyDbStorageProvider.java#L111-L125 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/CollectionUtils2.java | CollectionUtils2.refineCandidates | public static <E> List<E> refineCandidates(final List<E> candidates, final Predicate<? super E> predicate) {
if (candidates.size() == 1) {
return candidates;
}
List<E> newCandidates = CollectionUtils.filter(candidates, predicate);
if (newCandidates.isEmpty()) {
return candidates;
}
return newCandidates;
} | java | public static <E> List<E> refineCandidates(final List<E> candidates, final Predicate<? super E> predicate) {
if (candidates.size() == 1) {
return candidates;
}
List<E> newCandidates = CollectionUtils.filter(candidates, predicate);
if (newCandidates.isEmpty()) {
return candidates;
}
return newCandidates;
} | [
"public",
"static",
"<",
"E",
">",
"List",
"<",
"E",
">",
"refineCandidates",
"(",
"final",
"List",
"<",
"E",
">",
"candidates",
",",
"final",
"Predicate",
"<",
"?",
"super",
"E",
">",
"predicate",
")",
"{",
"if",
"(",
"candidates",
".",
"size",
"(",... | Refines a list of candidate objects based on a inclusion predicate. If no
candidates are found, the original list will be retained in the result.
Therefore the result will always have 1 or more elements in it.
@param candidates
@param predicate
@return | [
"Refines",
"a",
"list",
"of",
"candidate",
"objects",
"based",
"on",
"a",
"inclusion",
"predicate",
".",
"If",
"no",
"candidates",
"are",
"found",
"the",
"original",
"list",
"will",
"be",
"retained",
"in",
"the",
"result",
".",
"Therefore",
"the",
"result",
... | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/CollectionUtils2.java#L58-L67 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/CollectionUtils2.java | CollectionUtils2.createCache | public static <K, V> Cache<K, V> createCache(int maximumSize, long expiryDurationSeconds) {
Cache<K, V> cache = CacheBuilder.newBuilder().maximumSize(maximumSize)
.expireAfterAccess(expiryDurationSeconds, TimeUnit.SECONDS).build();
return cache;
} | java | public static <K, V> Cache<K, V> createCache(int maximumSize, long expiryDurationSeconds) {
Cache<K, V> cache = CacheBuilder.newBuilder().maximumSize(maximumSize)
.expireAfterAccess(expiryDurationSeconds, TimeUnit.SECONDS).build();
return cache;
} | [
"public",
"static",
"<",
"K",
",",
"V",
">",
"Cache",
"<",
"K",
",",
"V",
">",
"createCache",
"(",
"int",
"maximumSize",
",",
"long",
"expiryDurationSeconds",
")",
"{",
"Cache",
"<",
"K",
",",
"V",
">",
"cache",
"=",
"CacheBuilder",
".",
"newBuilder",
... | Creates a typical Google Guava cache
@param maximumSize
@param expiryDurationSeconds
@return | [
"Creates",
"a",
"typical",
"Google",
"Guava",
"cache"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/CollectionUtils2.java#L148-L152 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/lifecycle/LifeCycleHelper.java | LifeCycleHelper.close | @Deprecated
public void close(ComponentDescriptor<?> descriptor, Object component) {
close(descriptor, component, true);
} | java | @Deprecated
public void close(ComponentDescriptor<?> descriptor, Object component) {
close(descriptor, component, true);
} | [
"@",
"Deprecated",
"public",
"void",
"close",
"(",
"ComponentDescriptor",
"<",
"?",
">",
"descriptor",
",",
"Object",
"component",
")",
"{",
"close",
"(",
"descriptor",
",",
"component",
",",
"true",
")",
";",
"}"
] | Closes a component after user.
@param descriptor
@param component
@deprecated use {@link #close(ComponentDescriptor, Object, boolean)}
instead. | [
"Closes",
"a",
"component",
"after",
"user",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/lifecycle/LifeCycleHelper.java#L193-L196 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/lifecycle/LifeCycleHelper.java | LifeCycleHelper.closeReferenceData | public void closeReferenceData() {
if (_referenceDataActivationManager == null) {
return;
}
final Collection<Object> referenceData = _referenceDataActivationManager.getAllReferenceData();
for (Object object : referenceData) {
ComponentDescriptor<? extends Object> descriptor = Descriptors.ofComponent(object.getClass());
close(descriptor, object, true);
}
} | java | public void closeReferenceData() {
if (_referenceDataActivationManager == null) {
return;
}
final Collection<Object> referenceData = _referenceDataActivationManager.getAllReferenceData();
for (Object object : referenceData) {
ComponentDescriptor<? extends Object> descriptor = Descriptors.ofComponent(object.getClass());
close(descriptor, object, true);
}
} | [
"public",
"void",
"closeReferenceData",
"(",
")",
"{",
"if",
"(",
"_referenceDataActivationManager",
"==",
"null",
")",
"{",
"return",
";",
"}",
"final",
"Collection",
"<",
"Object",
">",
"referenceData",
"=",
"_referenceDataActivationManager",
".",
"getAllReference... | Closes all reference data used in this life cycle helper | [
"Closes",
"all",
"reference",
"data",
"used",
"in",
"this",
"life",
"cycle",
"helper"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/lifecycle/LifeCycleHelper.java#L201-L210 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/lifecycle/LifeCycleHelper.java | LifeCycleHelper.initializeReferenceData | public void initializeReferenceData() {
if (_referenceDataActivationManager == null) {
return;
}
final Collection<Object> referenceDataCollection = _referenceDataActivationManager.getAllReferenceData();
for (Object referenceData : referenceDataCollection) {
ComponentDescriptor<? extends Object> descriptor = Descriptors.ofComponent(referenceData.getClass());
assignProvidedProperties(descriptor, referenceData);
initialize(descriptor, referenceData);
}
} | java | public void initializeReferenceData() {
if (_referenceDataActivationManager == null) {
return;
}
final Collection<Object> referenceDataCollection = _referenceDataActivationManager.getAllReferenceData();
for (Object referenceData : referenceDataCollection) {
ComponentDescriptor<? extends Object> descriptor = Descriptors.ofComponent(referenceData.getClass());
assignProvidedProperties(descriptor, referenceData);
initialize(descriptor, referenceData);
}
} | [
"public",
"void",
"initializeReferenceData",
"(",
")",
"{",
"if",
"(",
"_referenceDataActivationManager",
"==",
"null",
")",
"{",
"return",
";",
"}",
"final",
"Collection",
"<",
"Object",
">",
"referenceDataCollection",
"=",
"_referenceDataActivationManager",
".",
"... | Initializes all reference data used in this life cycle helper | [
"Initializes",
"all",
"reference",
"data",
"used",
"in",
"this",
"life",
"cycle",
"helper"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/lifecycle/LifeCycleHelper.java#L215-L226 | train |
fuinorg/event-store-commons | api/src/main/java/org/fuin/esc/api/StreamEventsSlice.java | StreamEventsSlice.toDebugString | @NotNull
public final String toDebugString() {
return new ToStringBuilder(this)
.append("fromEventNumber", fromEventNumber)
.append("nextEventNumber", nextEventNumber)
.append("endOfStream", endOfStream)
.append("events", events).toString();
} | java | @NotNull
public final String toDebugString() {
return new ToStringBuilder(this)
.append("fromEventNumber", fromEventNumber)
.append("nextEventNumber", nextEventNumber)
.append("endOfStream", endOfStream)
.append("events", events).toString();
} | [
"@",
"NotNull",
"public",
"final",
"String",
"toDebugString",
"(",
")",
"{",
"return",
"new",
"ToStringBuilder",
"(",
"this",
")",
".",
"append",
"(",
"\"fromEventNumber\"",
",",
"fromEventNumber",
")",
".",
"append",
"(",
"\"nextEventNumber\"",
",",
"nextEventN... | Returns a debug string representation with all data.
@return Includes list content. | [
"Returns",
"a",
"debug",
"string",
"representation",
"with",
"all",
"data",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/api/src/main/java/org/fuin/esc/api/StreamEventsSlice.java#L163-L170 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java | SystemProperties.getString | public static String getString(String key, String valueIfNull) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNull;
}
return value;
} | java | public static String getString(String key, String valueIfNull) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNull;
}
return value;
} | [
"public",
"static",
"String",
"getString",
"(",
"String",
"key",
",",
"String",
"valueIfNull",
")",
"{",
"String",
"value",
"=",
"System",
".",
"getProperty",
"(",
"key",
")",
";",
"if",
"(",
"Strings",
".",
"isNullOrEmpty",
"(",
"value",
")",
")",
"{",
... | Gets a system property string, or a replacement value if the property is
null or blank.
@param key
@param valueIfNull
@return | [
"Gets",
"a",
"system",
"property",
"string",
"or",
"a",
"replacement",
"value",
"if",
"the",
"property",
"is",
"null",
"or",
"blank",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java#L47-L53 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java | SystemProperties.getLong | public static long getLong(String key, long valueIfNullOrNotParseable) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNullOrNotParseable;
}
try {
return Long.parseLong(value);
} catch (NumberFormatException e) {
return valueIfNullOrNotParseable;
}
} | java | public static long getLong(String key, long valueIfNullOrNotParseable) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNullOrNotParseable;
}
try {
return Long.parseLong(value);
} catch (NumberFormatException e) {
return valueIfNullOrNotParseable;
}
} | [
"public",
"static",
"long",
"getLong",
"(",
"String",
"key",
",",
"long",
"valueIfNullOrNotParseable",
")",
"{",
"String",
"value",
"=",
"System",
".",
"getProperty",
"(",
"key",
")",
";",
"if",
"(",
"Strings",
".",
"isNullOrEmpty",
"(",
"value",
")",
")",... | Gets a system property long, or a replacement value if the property is
null or blank or not parseable
@param key
@param valueIfNullOrNotParseable
@return | [
"Gets",
"a",
"system",
"property",
"long",
"or",
"a",
"replacement",
"value",
"if",
"the",
"property",
"is",
"null",
"or",
"blank",
"or",
"not",
"parseable"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java#L63-L73 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java | SystemProperties.getInt | public static long getInt(String key, int valueIfNullOrNotParseable) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNullOrNotParseable;
}
try {
return Integer.parseInt(value);
} catch (NumberFormatException e) {
return valueIfNullOrNotParseable;
}
} | java | public static long getInt(String key, int valueIfNullOrNotParseable) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNullOrNotParseable;
}
try {
return Integer.parseInt(value);
} catch (NumberFormatException e) {
return valueIfNullOrNotParseable;
}
} | [
"public",
"static",
"long",
"getInt",
"(",
"String",
"key",
",",
"int",
"valueIfNullOrNotParseable",
")",
"{",
"String",
"value",
"=",
"System",
".",
"getProperty",
"(",
"key",
")",
";",
"if",
"(",
"Strings",
".",
"isNullOrEmpty",
"(",
"value",
")",
")",
... | Gets a system property int, or a replacement value if the property is
null or blank or not parseable
@param key
@param valueIfNullOrNotParseable
@return | [
"Gets",
"a",
"system",
"property",
"int",
"or",
"a",
"replacement",
"value",
"if",
"the",
"property",
"is",
"null",
"or",
"blank",
"or",
"not",
"parseable"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java#L83-L93 | train |
datacleaner/AnalyzerBeans | core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java | SystemProperties.getBoolean | public static boolean getBoolean(String key, boolean valueIfNull) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNull;
}
value = value.trim().toLowerCase();
if ("true".equals(value)) {
return true;
} else if ("false".equals(value)) {
return false;
}
return valueIfNull;
} | java | public static boolean getBoolean(String key, boolean valueIfNull) {
String value = System.getProperty(key);
if (Strings.isNullOrEmpty(value)) {
return valueIfNull;
}
value = value.trim().toLowerCase();
if ("true".equals(value)) {
return true;
} else if ("false".equals(value)) {
return false;
}
return valueIfNull;
} | [
"public",
"static",
"boolean",
"getBoolean",
"(",
"String",
"key",
",",
"boolean",
"valueIfNull",
")",
"{",
"String",
"value",
"=",
"System",
".",
"getProperty",
"(",
"key",
")",
";",
"if",
"(",
"Strings",
".",
"isNullOrEmpty",
"(",
"value",
")",
")",
"{... | Gets a system property boolean, or a replacement value if the property is
null or blank or not parseable as a boolean.
@param key
@param valueIfNull
@return | [
"Gets",
"a",
"system",
"property",
"boolean",
"or",
"a",
"replacement",
"value",
"if",
"the",
"property",
"is",
"null",
"or",
"blank",
"or",
"not",
"parseable",
"as",
"a",
"boolean",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/core/src/main/java/org/eobjects/analyzer/util/SystemProperties.java#L103-L118 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/fragments/SharedPreferencesItem.java | SharedPreferencesItem.restoreData | private void restoreData() {
Map<String, ?> map = preferenceUtils.getAll();
Set<String> strings = map.keySet();
for (String string : strings) {
if (string.startsWith(SharedPreferenceUtils.keyTestMode)) {
preferenceUtils.restoreKey(string);
}
}
refreshKeyValues();
} | java | private void restoreData() {
Map<String, ?> map = preferenceUtils.getAll();
Set<String> strings = map.keySet();
for (String string : strings) {
if (string.startsWith(SharedPreferenceUtils.keyTestMode)) {
preferenceUtils.restoreKey(string);
}
}
refreshKeyValues();
} | [
"private",
"void",
"restoreData",
"(",
")",
"{",
"Map",
"<",
"String",
",",
"?",
">",
"map",
"=",
"preferenceUtils",
".",
"getAll",
"(",
")",
";",
"Set",
"<",
"String",
">",
"strings",
"=",
"map",
".",
"keySet",
"(",
")",
";",
"for",
"(",
"String",... | Restore values of original keys stored. | [
"Restore",
"values",
"of",
"original",
"keys",
"stored",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/fragments/SharedPreferencesItem.java#L144-L156 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/fragments/SharedPreferencesItem.java | SharedPreferencesItem.getKeyValues | private ArrayList<Pair<String, ?>> getKeyValues() {
ArrayList<Pair<String, ?>> keyValPair = new ArrayList<>();
Map<String, ?> map = preferenceUtils.getAll();
Set<String> strings = map.keySet();
Object value;
for (String key : strings) {
if (!key.contains(SharedPreferenceUtils.keyTestMode)) {
value = map.get(key);
keyValPair.add(new Pair<String, Object>(key, value));
}
}
return keyValPair;
} | java | private ArrayList<Pair<String, ?>> getKeyValues() {
ArrayList<Pair<String, ?>> keyValPair = new ArrayList<>();
Map<String, ?> map = preferenceUtils.getAll();
Set<String> strings = map.keySet();
Object value;
for (String key : strings) {
if (!key.contains(SharedPreferenceUtils.keyTestMode)) {
value = map.get(key);
keyValPair.add(new Pair<String, Object>(key, value));
}
}
return keyValPair;
} | [
"private",
"ArrayList",
"<",
"Pair",
"<",
"String",
",",
"?",
">",
">",
"getKeyValues",
"(",
")",
"{",
"ArrayList",
"<",
"Pair",
"<",
"String",
",",
"?",
">",
">",
"keyValPair",
"=",
"new",
"ArrayList",
"<>",
"(",
")",
";",
"Map",
"<",
"String",
",... | Get Key value pair for given shared preference files
@return : Pair of key value files from given shared preferences. | [
"Get",
"Key",
"value",
"pair",
"for",
"given",
"shared",
"preference",
"files"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/fragments/SharedPreferencesItem.java#L170-L182 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/fragments/SharedPreferencesItem.java | SharedPreferencesItem.storeOriginal | private void storeOriginal(Pair<String, Object> keyValue) {
String key = SharedPreferenceUtils.keyTestMode + keyValue.first;
if (!preferenceUtils.isValueExistForKey(key)) {
preferenceUtils.put(key, keyValue.second);
}
} | java | private void storeOriginal(Pair<String, Object> keyValue) {
String key = SharedPreferenceUtils.keyTestMode + keyValue.first;
if (!preferenceUtils.isValueExistForKey(key)) {
preferenceUtils.put(key, keyValue.second);
}
} | [
"private",
"void",
"storeOriginal",
"(",
"Pair",
"<",
"String",
",",
"Object",
">",
"keyValue",
")",
"{",
"String",
"key",
"=",
"SharedPreferenceUtils",
".",
"keyTestMode",
"+",
"keyValue",
".",
"first",
";",
"if",
"(",
"!",
"preferenceUtils",
".",
"isValueE... | Store original value before it's changed in test mode. It will take care not to over write if original value is already stored.
@param keyValue
: Pair of key and original value. | [
"Store",
"original",
"value",
"before",
"it",
"s",
"changed",
"in",
"test",
"mode",
".",
"It",
"will",
"take",
"care",
"not",
"to",
"over",
"write",
"if",
"original",
"value",
"is",
"already",
"stored",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/fragments/SharedPreferencesItem.java#L373-L380 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscMeta.java | EscMeta.getDataContentType | @NotNull
public final EnhancedMimeType getDataContentType() {
if (dataContentType == null) {
dataContentType = EnhancedMimeType.create(dataContentTypeStr);
}
return dataContentType;
} | java | @NotNull
public final EnhancedMimeType getDataContentType() {
if (dataContentType == null) {
dataContentType = EnhancedMimeType.create(dataContentTypeStr);
}
return dataContentType;
} | [
"@",
"NotNull",
"public",
"final",
"EnhancedMimeType",
"getDataContentType",
"(",
")",
"{",
"if",
"(",
"dataContentType",
"==",
"null",
")",
"{",
"dataContentType",
"=",
"EnhancedMimeType",
".",
"create",
"(",
"dataContentTypeStr",
")",
";",
"}",
"return",
"data... | Returns the type of the data.
@return Data type. | [
"Returns",
"the",
"type",
"of",
"the",
"data",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscMeta.java#L150-L156 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscMeta.java | EscMeta.getMetaContentType | @Nullable
public final EnhancedMimeType getMetaContentType() {
if ((metaContentType == null) && (metaContentTypeStr != null)) {
metaContentType = EnhancedMimeType.create(metaContentTypeStr);
}
return metaContentType;
} | java | @Nullable
public final EnhancedMimeType getMetaContentType() {
if ((metaContentType == null) && (metaContentTypeStr != null)) {
metaContentType = EnhancedMimeType.create(metaContentTypeStr);
}
return metaContentType;
} | [
"@",
"Nullable",
"public",
"final",
"EnhancedMimeType",
"getMetaContentType",
"(",
")",
"{",
"if",
"(",
"(",
"metaContentType",
"==",
"null",
")",
"&&",
"(",
"metaContentTypeStr",
"!=",
"null",
")",
")",
"{",
"metaContentType",
"=",
"EnhancedMimeType",
".",
"c... | Returns the type of the meta data if meta data is available.
@return Meta type. | [
"Returns",
"the",
"type",
"of",
"the",
"meta",
"data",
"if",
"meta",
"data",
"is",
"available",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscMeta.java#L173-L179 | train |
fuinorg/event-store-commons | spi/src/main/java/org/fuin/esc/spi/EscMeta.java | EscMeta.toJson | public JsonObject toJson() {
final JsonObjectBuilder builder = Json.createObjectBuilder();
builder.add(EL_DATA_TYPE, dataType);
builder.add(EL_DATA_CONTENT_TYPE, dataContentTypeStr);
if (meta == null) {
return builder.build();
}
builder.add(EL_META_TYPE, metaType);
builder.add(EL_META_CONTENT_TYPE, metaContentTypeStr);
if (meta instanceof JsonObject) {
final JsonObject jo = (JsonObject) meta;
return builder.add(metaType, jo).build();
}
if (meta instanceof ToJsonCapable) {
final ToJsonCapable tjc = (ToJsonCapable) meta;
return builder.add(metaType, tjc.toJson()).build();
}
if (meta instanceof Base64Data) {
final Base64Data base64data = (Base64Data) meta;
return builder.add(metaType, base64data.getEncoded()).build();
}
throw new IllegalStateException("Unknown meta object type: " + meta.getClass());
} | java | public JsonObject toJson() {
final JsonObjectBuilder builder = Json.createObjectBuilder();
builder.add(EL_DATA_TYPE, dataType);
builder.add(EL_DATA_CONTENT_TYPE, dataContentTypeStr);
if (meta == null) {
return builder.build();
}
builder.add(EL_META_TYPE, metaType);
builder.add(EL_META_CONTENT_TYPE, metaContentTypeStr);
if (meta instanceof JsonObject) {
final JsonObject jo = (JsonObject) meta;
return builder.add(metaType, jo).build();
}
if (meta instanceof ToJsonCapable) {
final ToJsonCapable tjc = (ToJsonCapable) meta;
return builder.add(metaType, tjc.toJson()).build();
}
if (meta instanceof Base64Data) {
final Base64Data base64data = (Base64Data) meta;
return builder.add(metaType, base64data.getEncoded()).build();
}
throw new IllegalStateException("Unknown meta object type: " + meta.getClass());
} | [
"public",
"JsonObject",
"toJson",
"(",
")",
"{",
"final",
"JsonObjectBuilder",
"builder",
"=",
"Json",
".",
"createObjectBuilder",
"(",
")",
";",
"builder",
".",
"add",
"(",
"EL_DATA_TYPE",
",",
"dataType",
")",
";",
"builder",
".",
"add",
"(",
"EL_DATA_CONT... | Converts the object into a JSON object.
@return JSON object. | [
"Converts",
"the",
"object",
"into",
"a",
"JSON",
"object",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/spi/src/main/java/org/fuin/esc/spi/EscMeta.java#L196-L218 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.callRC | public JsonElement callRC(LsApiBody body) throws LimesurveyRCException {
try (CloseableHttpClient client = HttpClientBuilder.create().build()) {
HttpPost post = new HttpPost(url);
post.setHeader("Content-type", "application/json");
String jsonBody = gson.toJson(body);
LOGGER.debug("API CALL JSON => " + jsonBody);
post.setEntity(new StringEntity(jsonBody));
HttpResponse response = client.execute(post);
if (response.getStatusLine().getStatusCode() == 200) {
String jsonResult = EntityUtils.toString(response.getEntity());
LOGGER.debug("API RESPONSE JSON => " + jsonResult);
JsonElement result = new JsonParser().parse(jsonResult).getAsJsonObject().get("result");
if (result.isJsonObject() && result.getAsJsonObject().has("status")) {
throw new LimesurveyRCException("Error from API : " + result.getAsJsonObject().get("status").getAsString());
}
return result;
} else {
throw new LimesurveyRCException("Expecting status code 200, got " + response.getStatusLine().getStatusCode() + " instead");
}
} catch (IOException e) {
throw new LimesurveyRCException("Exception while calling API : " + e.getMessage(), e);
}
} | java | public JsonElement callRC(LsApiBody body) throws LimesurveyRCException {
try (CloseableHttpClient client = HttpClientBuilder.create().build()) {
HttpPost post = new HttpPost(url);
post.setHeader("Content-type", "application/json");
String jsonBody = gson.toJson(body);
LOGGER.debug("API CALL JSON => " + jsonBody);
post.setEntity(new StringEntity(jsonBody));
HttpResponse response = client.execute(post);
if (response.getStatusLine().getStatusCode() == 200) {
String jsonResult = EntityUtils.toString(response.getEntity());
LOGGER.debug("API RESPONSE JSON => " + jsonResult);
JsonElement result = new JsonParser().parse(jsonResult).getAsJsonObject().get("result");
if (result.isJsonObject() && result.getAsJsonObject().has("status")) {
throw new LimesurveyRCException("Error from API : " + result.getAsJsonObject().get("status").getAsString());
}
return result;
} else {
throw new LimesurveyRCException("Expecting status code 200, got " + response.getStatusLine().getStatusCode() + " instead");
}
} catch (IOException e) {
throw new LimesurveyRCException("Exception while calling API : " + e.getMessage(), e);
}
} | [
"public",
"JsonElement",
"callRC",
"(",
"LsApiBody",
"body",
")",
"throws",
"LimesurveyRCException",
"{",
"try",
"(",
"CloseableHttpClient",
"client",
"=",
"HttpClientBuilder",
".",
"create",
"(",
")",
".",
"build",
"(",
")",
")",
"{",
"HttpPost",
"post",
"=",... | Call Limesurvey Remote Control.
@param body the body of the request. Contains which method to call and the parameters
@return the json element containing the result from the call
@throws LimesurveyRCException the limesurvey rc exception | [
"Call",
"Limesurvey",
"Remote",
"Control",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L89-L111 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.createIncompleteResponse | public int createIncompleteResponse(int surveyId, String token) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
HashMap<String, String> responseData = new HashMap<>();
responseData.put("submitdate", "");
String date = ZonedDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE) + " " + ZonedDateTime.now().format(DateTimeFormatter.ISO_LOCAL_TIME);
responseData.put("startdate", date);
responseData.put("datestamp", date);
if (StringUtils.isNotEmpty(token)) {
responseData.put("token", token);
}
params.setResponseData(responseData);
return callRC(new LsApiBody("add_response", params)).getAsInt();
} | java | public int createIncompleteResponse(int surveyId, String token) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
HashMap<String, String> responseData = new HashMap<>();
responseData.put("submitdate", "");
String date = ZonedDateTime.now().format(DateTimeFormatter.ISO_LOCAL_DATE) + " " + ZonedDateTime.now().format(DateTimeFormatter.ISO_LOCAL_TIME);
responseData.put("startdate", date);
responseData.put("datestamp", date);
if (StringUtils.isNotEmpty(token)) {
responseData.put("token", token);
}
params.setResponseData(responseData);
return callRC(new LsApiBody("add_response", params)).getAsInt();
} | [
"public",
"int",
"createIncompleteResponse",
"(",
"int",
"surveyId",
",",
"String",
"token",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithKey",
"(",
"surveyId",
")",
";",
"HashMap",
"<",
"String",
",",
... | Create an incomplete response, its field "completed" is set to "N" and the response doesn't have a submitdate.
@param surveyId the survey id of the survey you want to create the response
@param token the token used for the response, no token will be set if the value is empty
@return the id of the response
@throws LimesurveyRCException the limesurvey rc exception | [
"Create",
"an",
"incomplete",
"response",
"its",
"field",
"completed",
"is",
"set",
"to",
"N",
"and",
"the",
"response",
"doesn",
"t",
"have",
"a",
"submitdate",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L132-L144 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.completeResponse | public boolean completeResponse(int surveyId, int responseId, LocalDateTime date) throws LimesurveyRCException {
Map<String, String> responseData = new HashMap<>();
responseData.put("submitdate", date.format(DateTimeFormatter.ISO_LOCAL_DATE) + " " + date.format(DateTimeFormatter.ISO_LOCAL_TIME));
JsonElement result = updateResponse(surveyId, responseId, responseData);
if (!result.getAsBoolean()) {
throw new LimesurveyRCException(result.getAsString());
}
return true;
} | java | public boolean completeResponse(int surveyId, int responseId, LocalDateTime date) throws LimesurveyRCException {
Map<String, String> responseData = new HashMap<>();
responseData.put("submitdate", date.format(DateTimeFormatter.ISO_LOCAL_DATE) + " " + date.format(DateTimeFormatter.ISO_LOCAL_TIME));
JsonElement result = updateResponse(surveyId, responseId, responseData);
if (!result.getAsBoolean()) {
throw new LimesurveyRCException(result.getAsString());
}
return true;
} | [
"public",
"boolean",
"completeResponse",
"(",
"int",
"surveyId",
",",
"int",
"responseId",
",",
"LocalDateTime",
"date",
")",
"throws",
"LimesurveyRCException",
"{",
"Map",
"<",
"String",
",",
"String",
">",
"responseData",
"=",
"new",
"HashMap",
"<>",
"(",
")... | Complete a response.
@param surveyId the survey id of the survey you want to complete the response
@param responseId the response id of the response you want to complete
@param date the date where the response will be completed (submitdate)
@return true if the response was successfuly completed
@throws LimesurveyRCException the limesurvey rc exception | [
"Complete",
"a",
"response",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L167-L177 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.updateResponse | public JsonElement updateResponse(int surveyId, int responseId, Map<String, String> responseData) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
responseData.put("id", String.valueOf(responseId));
params.setResponseData(responseData);
return callRC(new LsApiBody("update_response", params));
} | java | public JsonElement updateResponse(int surveyId, int responseId, Map<String, String> responseData) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
responseData.put("id", String.valueOf(responseId));
params.setResponseData(responseData);
return callRC(new LsApiBody("update_response", params));
} | [
"public",
"JsonElement",
"updateResponse",
"(",
"int",
"surveyId",
",",
"int",
"responseId",
",",
"Map",
"<",
"String",
",",
"String",
">",
"responseData",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithK... | Update a response.
@param surveyId the survey id of the survey you want to update the response
@param responseId the response id of the response you want to update
@param responseData the response data that contains the fields you want to update
@return the json element
@throws LimesurveyRCException the limesurvey rc exception | [
"Update",
"a",
"response",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L188-L194 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getQuestions | public Stream<LsQuestion> getQuestions(int surveyId) throws LimesurveyRCException {
return getGroups(surveyId).flatMap(group -> {
try {
return getQuestionsFromGroup(surveyId, group.getId());
} catch (LimesurveyRCException e) {
LOGGER.error("Unable to get questions from group " + group.getId(), e);
}
return Stream.empty();
});
} | java | public Stream<LsQuestion> getQuestions(int surveyId) throws LimesurveyRCException {
return getGroups(surveyId).flatMap(group -> {
try {
return getQuestionsFromGroup(surveyId, group.getId());
} catch (LimesurveyRCException e) {
LOGGER.error("Unable to get questions from group " + group.getId(), e);
}
return Stream.empty();
});
} | [
"public",
"Stream",
"<",
"LsQuestion",
">",
"getQuestions",
"(",
"int",
"surveyId",
")",
"throws",
"LimesurveyRCException",
"{",
"return",
"getGroups",
"(",
"surveyId",
")",
".",
"flatMap",
"(",
"group",
"->",
"{",
"try",
"{",
"return",
"getQuestionsFromGroup",
... | Gets questions from a survey.
The questions are ordered using the "group_order" field from the groups and then the "question_order" field from the questions
@param surveyId the survey id of the survey you want to get the questions
@return a stream of questions in an ordered order
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"questions",
"from",
"a",
"survey",
".",
"The",
"questions",
"are",
"ordered",
"using",
"the",
"group_order",
"field",
"from",
"the",
"groups",
"and",
"then",
"the",
"question_order",
"field",
"from",
"the",
"questions"
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L204-L213 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getQuestion | public LsQuestion getQuestion(int surveyId, int questionId) throws LimesurveyRCException {
return getQuestions(surveyId).filter(question -> question.getId() == questionId)
.findFirst().orElseThrow(() -> new LimesurveyRCException("No question found for id " + questionId + " in survey " + surveyId));
} | java | public LsQuestion getQuestion(int surveyId, int questionId) throws LimesurveyRCException {
return getQuestions(surveyId).filter(question -> question.getId() == questionId)
.findFirst().orElseThrow(() -> new LimesurveyRCException("No question found for id " + questionId + " in survey " + surveyId));
} | [
"public",
"LsQuestion",
"getQuestion",
"(",
"int",
"surveyId",
",",
"int",
"questionId",
")",
"throws",
"LimesurveyRCException",
"{",
"return",
"getQuestions",
"(",
"surveyId",
")",
".",
"filter",
"(",
"question",
"->",
"question",
".",
"getId",
"(",
")",
"=="... | Gets question from a survey.
@param surveyId the survey id of the survey you want to get the question
@param questionId the question id
@return the question
@throws LimesurveyRCException if no question was found with the given id | [
"Gets",
"question",
"from",
"a",
"survey",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L223-L226 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getQuestionAnswers | public Map<String, LsQuestionAnswer> getQuestionAnswers(int questionId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey();
params.setQuestionId(questionId);
List<String> questionSettings = new ArrayList<>();
questionSettings.add("answeroptions");
params.setQuestionSettings(questionSettings);
JsonElement result = callRC(new LsApiBody("get_question_properties", params)).getAsJsonObject().get("answeroptions");
return gson.fromJson(result, new TypeToken<Map<String, LsQuestionAnswer>>() {
}.getType());
} | java | public Map<String, LsQuestionAnswer> getQuestionAnswers(int questionId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey();
params.setQuestionId(questionId);
List<String> questionSettings = new ArrayList<>();
questionSettings.add("answeroptions");
params.setQuestionSettings(questionSettings);
JsonElement result = callRC(new LsApiBody("get_question_properties", params)).getAsJsonObject().get("answeroptions");
return gson.fromJson(result, new TypeToken<Map<String, LsQuestionAnswer>>() {
}.getType());
} | [
"public",
"Map",
"<",
"String",
",",
"LsQuestionAnswer",
">",
"getQuestionAnswers",
"(",
"int",
"questionId",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithKey",
"(",
")",
";",
"params",
".",
"setQuestio... | Gets possible answers from a question.
@param questionId the question id you want to get the answers
@return the answers of the question
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"possible",
"answers",
"from",
"a",
"question",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L235-L245 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getGroups | public Stream<LsQuestionGroup> getGroups(int surveyId) throws LimesurveyRCException {
JsonElement result = callRC(new LsApiBody("list_groups", getParamsWithKey(surveyId)));
List<LsQuestionGroup> questionGroups = gson.fromJson(result, new TypeToken<List<LsQuestionGroup>>() {
}.getType());
return questionGroups.stream().sorted(Comparator.comparing(LsQuestionGroup::getOrder));
} | java | public Stream<LsQuestionGroup> getGroups(int surveyId) throws LimesurveyRCException {
JsonElement result = callRC(new LsApiBody("list_groups", getParamsWithKey(surveyId)));
List<LsQuestionGroup> questionGroups = gson.fromJson(result, new TypeToken<List<LsQuestionGroup>>() {
}.getType());
return questionGroups.stream().sorted(Comparator.comparing(LsQuestionGroup::getOrder));
} | [
"public",
"Stream",
"<",
"LsQuestionGroup",
">",
"getGroups",
"(",
"int",
"surveyId",
")",
"throws",
"LimesurveyRCException",
"{",
"JsonElement",
"result",
"=",
"callRC",
"(",
"new",
"LsApiBody",
"(",
"\"list_groups\"",
",",
"getParamsWithKey",
"(",
"surveyId",
")... | Gets groups from a survey.
The groups are ordered using the "group_order" field.
@param surveyId the survey id you want to get the groups
@return a stream of groups in an ordered order
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"groups",
"from",
"a",
"survey",
".",
"The",
"groups",
"are",
"ordered",
"using",
"the",
"group_order",
"field",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L255-L261 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getQuestionsFromGroup | public Stream<LsQuestion> getQuestionsFromGroup(int surveyId, int groupId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
params.setGroupId(groupId);
JsonElement result = callRC(new LsApiBody("list_questions", params));
List<LsQuestion> questions = gson.fromJson(result, new TypeToken<List<LsQuestion>>() {
}.getType());
return questions.stream().sorted(Comparator.comparing(LsQuestion::getOrder));
} | java | public Stream<LsQuestion> getQuestionsFromGroup(int surveyId, int groupId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
params.setGroupId(groupId);
JsonElement result = callRC(new LsApiBody("list_questions", params));
List<LsQuestion> questions = gson.fromJson(result, new TypeToken<List<LsQuestion>>() {
}.getType());
return questions.stream().sorted(Comparator.comparing(LsQuestion::getOrder));
} | [
"public",
"Stream",
"<",
"LsQuestion",
">",
"getQuestionsFromGroup",
"(",
"int",
"surveyId",
",",
"int",
"groupId",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithKey",
"(",
"surveyId",
")",
";",
"params"... | Gets questions from a group.
The questions are ordered using the "question_order" field.
@param surveyId the survey id you want to get the questions
@param groupId the group id you want to get the questions
@return a stream of questions in an ordered order
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"questions",
"from",
"a",
"group",
".",
"The",
"questions",
"are",
"ordered",
"using",
"the",
"question_order",
"field",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L272-L280 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.isSurveyActive | public boolean isSurveyActive(int surveyId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
List<String> surveySettings = new ArrayList<>();
surveySettings.add("active");
params.setSurveySettings(surveySettings);
return "Y".equals(callRC(new LsApiBody("get_survey_properties", params)).getAsJsonObject().get("active").getAsString());
} | java | public boolean isSurveyActive(int surveyId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
List<String> surveySettings = new ArrayList<>();
surveySettings.add("active");
params.setSurveySettings(surveySettings);
return "Y".equals(callRC(new LsApiBody("get_survey_properties", params)).getAsJsonObject().get("active").getAsString());
} | [
"public",
"boolean",
"isSurveyActive",
"(",
"int",
"surveyId",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithKey",
"(",
"surveyId",
")",
";",
"List",
"<",
"String",
">",
"surveySettings",
"=",
"new",
"... | Check if a survey is active.
@param surveyId the survey id of the survey you want to check
@return true if the survey is active
@throws LimesurveyRCException the limesurvey rc exception | [
"Check",
"if",
"a",
"survey",
"is",
"active",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L289-L296 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getSurveys | public Stream<LsSurvey> getSurveys() throws LimesurveyRCException {
JsonElement result = callRC(new LsApiBody("list_surveys", getParamsWithKey()));
List<LsSurvey> surveys = gson.fromJson(result, new TypeToken<List<LsSurvey>>() {
}.getType());
return surveys.stream();
} | java | public Stream<LsSurvey> getSurveys() throws LimesurveyRCException {
JsonElement result = callRC(new LsApiBody("list_surveys", getParamsWithKey()));
List<LsSurvey> surveys = gson.fromJson(result, new TypeToken<List<LsSurvey>>() {
}.getType());
return surveys.stream();
} | [
"public",
"Stream",
"<",
"LsSurvey",
">",
"getSurveys",
"(",
")",
"throws",
"LimesurveyRCException",
"{",
"JsonElement",
"result",
"=",
"callRC",
"(",
"new",
"LsApiBody",
"(",
"\"list_surveys\"",
",",
"getParamsWithKey",
"(",
")",
")",
")",
";",
"List",
"<",
... | Gets all surveys.
@return a stream of surveys
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"all",
"surveys",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L325-L331 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getSurveyLanguageProperties | public LsSurveyLanguage getSurveyLanguageProperties(int surveyId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
List<String> localeSettings = new ArrayList<>();
localeSettings.add("surveyls_welcometext");
localeSettings.add("surveyls_endtext");
params.setSurveyLocaleSettings(localeSettings);
LsSurveyLanguage surveyLanguage = gson.fromJson(callRC(new LsApiBody("get_language_properties", params)), LsSurveyLanguage.class);
surveyLanguage.setId(surveyId);
return surveyLanguage;
} | java | public LsSurveyLanguage getSurveyLanguageProperties(int surveyId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
List<String> localeSettings = new ArrayList<>();
localeSettings.add("surveyls_welcometext");
localeSettings.add("surveyls_endtext");
params.setSurveyLocaleSettings(localeSettings);
LsSurveyLanguage surveyLanguage = gson.fromJson(callRC(new LsApiBody("get_language_properties", params)), LsSurveyLanguage.class);
surveyLanguage.setId(surveyId);
return surveyLanguage;
} | [
"public",
"LsSurveyLanguage",
"getSurveyLanguageProperties",
"(",
"int",
"surveyId",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithKey",
"(",
"surveyId",
")",
";",
"List",
"<",
"String",
">",
"localeSettings... | Gets language properties from a survey.
@param surveyId the survey id of the survey you want the properties
@return the language properties
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"language",
"properties",
"from",
"a",
"survey",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L340-L350 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getSessionKey | public String getSessionKey() throws LimesurveyRCException {
// Use the saved key if isn't expired
if (!key.isEmpty() && ZonedDateTime.now().isBefore(keyExpiration)) {
return key;
}
// Get session key and save it with an expiration set to 1 minute before the expiration date
LsApiBody.LsApiParams params = new LsApiBody.LsApiParams();
params.setUsername(user);
params.setPassword(password);
JsonElement result = callRC(new LsApiBody("get_session_key", params));
key = result.getAsString();
keyExpiration = ZonedDateTime.now().plusSeconds(keyTimeout - 60);
return key;
} | java | public String getSessionKey() throws LimesurveyRCException {
// Use the saved key if isn't expired
if (!key.isEmpty() && ZonedDateTime.now().isBefore(keyExpiration)) {
return key;
}
// Get session key and save it with an expiration set to 1 minute before the expiration date
LsApiBody.LsApiParams params = new LsApiBody.LsApiParams();
params.setUsername(user);
params.setPassword(password);
JsonElement result = callRC(new LsApiBody("get_session_key", params));
key = result.getAsString();
keyExpiration = ZonedDateTime.now().plusSeconds(keyTimeout - 60);
return key;
} | [
"public",
"String",
"getSessionKey",
"(",
")",
"throws",
"LimesurveyRCException",
"{",
"// Use the saved key if isn't expired",
"if",
"(",
"!",
"key",
".",
"isEmpty",
"(",
")",
"&&",
"ZonedDateTime",
".",
"now",
"(",
")",
".",
"isBefore",
"(",
"keyExpiration",
"... | Gets the current session key.
@return the session key
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"the",
"current",
"session",
"key",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L358-L373 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getParticipantProperties | public Map<String, String> getParticipantProperties(int surveyId, String token, List<String> tokenProperties) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
Map<String, String> queryProperties = new HashMap<>();
queryProperties.put("token", token);
params.setTokenQueryProperties(queryProperties);
params.setTokenProperties(tokenProperties);
return gson.fromJson(callRC(new LsApiBody("get_participant_properties", params)), new TypeToken<Map<String, String>>() {
}.getType());
} | java | public Map<String, String> getParticipantProperties(int surveyId, String token, List<String> tokenProperties) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
Map<String, String> queryProperties = new HashMap<>();
queryProperties.put("token", token);
params.setTokenQueryProperties(queryProperties);
params.setTokenProperties(tokenProperties);
return gson.fromJson(callRC(new LsApiBody("get_participant_properties", params)), new TypeToken<Map<String, String>>() {
}.getType());
} | [
"public",
"Map",
"<",
"String",
",",
"String",
">",
"getParticipantProperties",
"(",
"int",
"surveyId",
",",
"String",
"token",
",",
"List",
"<",
"String",
">",
"tokenProperties",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"par... | Gets participant properties.
@param surveyId the survey id of the participant's survey
@param token the token of the participant
@param tokenProperties the token properties
@return the participant properties
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"participant",
"properties",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L384-L393 | train |
Falydoor/limesurvey-rc | src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java | LimesurveyRC.getAllParticipants | public Stream<LsParticipant> getAllParticipants(int surveyId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
params.setStart(0);
params.setLimit(-1);
List<LsParticipant> participants = gson.fromJson(callRC(new LsApiBody("list_participants", params)), new TypeToken<List<LsParticipant>>() {
}.getType());
return participants.stream();
} | java | public Stream<LsParticipant> getAllParticipants(int surveyId) throws LimesurveyRCException {
LsApiBody.LsApiParams params = getParamsWithKey(surveyId);
params.setStart(0);
params.setLimit(-1);
List<LsParticipant> participants = gson.fromJson(callRC(new LsApiBody("list_participants", params)), new TypeToken<List<LsParticipant>>() {
}.getType());
return participants.stream();
} | [
"public",
"Stream",
"<",
"LsParticipant",
">",
"getAllParticipants",
"(",
"int",
"surveyId",
")",
"throws",
"LimesurveyRCException",
"{",
"LsApiBody",
".",
"LsApiParams",
"params",
"=",
"getParamsWithKey",
"(",
"surveyId",
")",
";",
"params",
".",
"setStart",
"(",... | Gets all participants from a survey.
@param surveyId the survey id of the survey you want the participants
@return the all participants
@throws LimesurveyRCException the limesurvey rc exception | [
"Gets",
"all",
"participants",
"from",
"a",
"survey",
"."
] | b8d573389086395e46a0bdeeddeef4d1c2c0a488 | https://github.com/Falydoor/limesurvey-rc/blob/b8d573389086395e46a0bdeeddeef4d1c2c0a488/src/main/java/com/github/falydoor/limesurveyrc/LimesurveyRC.java#L402-L410 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.initWith | public static SharedPreferenceUtils initWith(SharedPreferences sharedPreferences) {
if (sharedPreferenceUtils == null) {
sharedPreferenceUtils = new SharedPreferenceUtils();
}
sharedPreferenceUtils.sharedPreferences = sharedPreferences;
return sharedPreferenceUtils;
} | java | public static SharedPreferenceUtils initWith(SharedPreferences sharedPreferences) {
if (sharedPreferenceUtils == null) {
sharedPreferenceUtils = new SharedPreferenceUtils();
}
sharedPreferenceUtils.sharedPreferences = sharedPreferences;
return sharedPreferenceUtils;
} | [
"public",
"static",
"SharedPreferenceUtils",
"initWith",
"(",
"SharedPreferences",
"sharedPreferences",
")",
"{",
"if",
"(",
"sharedPreferenceUtils",
"==",
"null",
")",
"{",
"sharedPreferenceUtils",
"=",
"new",
"SharedPreferenceUtils",
"(",
")",
";",
"}",
"sharedPrefe... | Init SharedPreferenceUtils with SharedPreferences file
@param sharedPreferences
: SharedPreferences object to init with.
@return : SharedPreferenceUtils object. It will store the sharedPreferences value with given SharedPreferences. | [
"Init",
"SharedPreferenceUtils",
"with",
"SharedPreferences",
"file"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L44-L51 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.initWith | public static SharedPreferenceUtils initWith(Context context, String name) {
if (sharedPreferenceUtils == null) {
sharedPreferenceUtils = new SharedPreferenceUtils();
}
if (isEmptyString(name)) {
sharedPreferenceUtils.sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
} else {
sharedPreferenceUtils.sharedPreferences = context.getSharedPreferences(name, Context.MODE_PRIVATE);
}
return sharedPreferenceUtils;
} | java | public static SharedPreferenceUtils initWith(Context context, String name) {
if (sharedPreferenceUtils == null) {
sharedPreferenceUtils = new SharedPreferenceUtils();
}
if (isEmptyString(name)) {
sharedPreferenceUtils.sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
} else {
sharedPreferenceUtils.sharedPreferences = context.getSharedPreferences(name, Context.MODE_PRIVATE);
}
return sharedPreferenceUtils;
} | [
"public",
"static",
"SharedPreferenceUtils",
"initWith",
"(",
"Context",
"context",
",",
"String",
"name",
")",
"{",
"if",
"(",
"sharedPreferenceUtils",
"==",
"null",
")",
"{",
"sharedPreferenceUtils",
"=",
"new",
"SharedPreferenceUtils",
"(",
")",
";",
"}",
"if... | Init SharedPreferences with context and a SharedPreferences name
@param context:
Context to init SharedPreferences
@param name:
Name of SharedPreferences file. If you pass <code>null</code> it will create default SharedPrefernces
@return: SharedPreferenceUtils object. It will store given the sharedPreferences value with given SharedPreferences. | [
"Init",
"SharedPreferences",
"with",
"context",
"and",
"a",
"SharedPreferences",
"name"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L63-L73 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.getNumber | public static int getNumber(CharSequence string) {
int number = 0;
if (!isEmptyString(string)) {
if (TextUtils.isDigitsOnly(string)) {
number = Integer.parseInt(string.toString());
}
}
return number;
} | java | public static int getNumber(CharSequence string) {
int number = 0;
if (!isEmptyString(string)) {
if (TextUtils.isDigitsOnly(string)) {
number = Integer.parseInt(string.toString());
}
}
return number;
} | [
"public",
"static",
"int",
"getNumber",
"(",
"CharSequence",
"string",
")",
"{",
"int",
"number",
"=",
"0",
";",
"if",
"(",
"!",
"isEmptyString",
"(",
"string",
")",
")",
"{",
"if",
"(",
"TextUtils",
".",
"isDigitsOnly",
"(",
"string",
")",
")",
"{",
... | Extract number from string, failsafe. If the string is not a proper number it will always return 0;
@param string
: String that should be converted into a number
@return : 0 if conversion to number is failed anyhow, otherwise converted number is returned | [
"Extract",
"number",
"from",
"string",
"failsafe",
".",
"If",
"the",
"string",
"is",
"not",
"a",
"proper",
"number",
"it",
"will",
"always",
"return",
"0",
";"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L95-L104 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.getNumberFloat | public static float getNumberFloat(CharSequence string) {
float number = 0.0f;
try {
if (!isEmptyString(string)) {
number = Float.parseFloat(string.toString());
}
} catch (NumberFormatException e) {
e.printStackTrace();
}
return number;
} | java | public static float getNumberFloat(CharSequence string) {
float number = 0.0f;
try {
if (!isEmptyString(string)) {
number = Float.parseFloat(string.toString());
}
} catch (NumberFormatException e) {
e.printStackTrace();
}
return number;
} | [
"public",
"static",
"float",
"getNumberFloat",
"(",
"CharSequence",
"string",
")",
"{",
"float",
"number",
"=",
"0.0f",
";",
"try",
"{",
"if",
"(",
"!",
"isEmptyString",
"(",
"string",
")",
")",
"{",
"number",
"=",
"Float",
".",
"parseFloat",
"(",
"strin... | Extract number from string, failsafe. If the string is not a proper number it will always return 0.0f;
@param string
: String that should be converted into a number
@return : 0.0f if conversion to number is failed anyhow, otherwise converted number is returned | [
"Extract",
"number",
"from",
"string",
"failsafe",
".",
"If",
"the",
"string",
"is",
"not",
"a",
"proper",
"number",
"it",
"will",
"always",
"return",
"0",
".",
"0f",
";"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L114-L124 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.getNumberLong | public static long getNumberLong(CharSequence string) {
long number = 0l;
try {
if (!isEmptyString(string)) {
if (TextUtils.isDigitsOnly(string)) {
number = Long.parseLong(string.toString());
}
}
} catch (NumberFormatException e) {
e.printStackTrace();
}
return number;
} | java | public static long getNumberLong(CharSequence string) {
long number = 0l;
try {
if (!isEmptyString(string)) {
if (TextUtils.isDigitsOnly(string)) {
number = Long.parseLong(string.toString());
}
}
} catch (NumberFormatException e) {
e.printStackTrace();
}
return number;
} | [
"public",
"static",
"long",
"getNumberLong",
"(",
"CharSequence",
"string",
")",
"{",
"long",
"number",
"=",
"0l",
";",
"try",
"{",
"if",
"(",
"!",
"isEmptyString",
"(",
"string",
")",
")",
"{",
"if",
"(",
"TextUtils",
".",
"isDigitsOnly",
"(",
"string",... | Extract number from string, failsafe. If the string is not a proper number it will always return 0l;
@param string
: String that should be converted into a number
@return : 0l if conversion to number is failed anyhow, otherwise converted number is returned | [
"Extract",
"number",
"from",
"string",
"failsafe",
".",
"If",
"the",
"string",
"is",
"not",
"a",
"proper",
"number",
"it",
"will",
"always",
"return",
"0l",
";"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L135-L148 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.inflateDebugMenu | public void inflateDebugMenu(MenuInflater inflater, Menu menu) {
inflater.inflate(R.menu.debug, menu);
} | java | public void inflateDebugMenu(MenuInflater inflater, Menu menu) {
inflater.inflate(R.menu.debug, menu);
} | [
"public",
"void",
"inflateDebugMenu",
"(",
"MenuInflater",
"inflater",
",",
"Menu",
"menu",
")",
"{",
"inflater",
".",
"inflate",
"(",
"R",
".",
"menu",
".",
"debug",
",",
"menu",
")",
";",
"}"
] | Inflate menu item for debug.
@param inflater:
MenuInflater to inflate the menu.
@param menu
: Menu object to inflate debug menu. | [
"Inflate",
"menu",
"item",
"for",
"debug",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L167-L169 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.isDebugHandled | public boolean isDebugHandled(Context context, MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_debug) {
startActivity(context);
return true;
}
return false;
} | java | public boolean isDebugHandled(Context context, MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_debug) {
startActivity(context);
return true;
}
return false;
} | [
"public",
"boolean",
"isDebugHandled",
"(",
"Context",
"context",
",",
"MenuItem",
"item",
")",
"{",
"int",
"id",
"=",
"item",
".",
"getItemId",
"(",
")",
";",
"if",
"(",
"id",
"==",
"R",
".",
"id",
".",
"action_debug",
")",
"{",
"startActivity",
"(",
... | Checks if debug menu item clicked or not.
@param context
: context to start activity if debug item handled.
@param item
: Menu item whose click is to be checked.
@return : <code>true</code> if debug menu item is clicked, it will automatically Start the SharedPrefsBrowser activity. If debug menu item is
not clicked, you can handle rest menu items in onOptionsItemSelcted code. | [
"Checks",
"if",
"debug",
"menu",
"item",
"clicked",
"or",
"not",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L182-L189 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.isValueExistForKey | public boolean isValueExistForKey(String key) {
boolean isValueExists;
try {
String string = getString(key, "");
isValueExists = !string.equalsIgnoreCase("");
} catch (ClassCastException e) {
try {
int anInt = getInt(key, 0);
isValueExists = anInt != 0;
} catch (ClassCastException e1) {
try {
long aLong = getLong(key, 0);
isValueExists = aLong != 0;
} catch (ClassCastException e2) {
try {
float aFloat = getFloat(key, 0f);
isValueExists = aFloat != 0;
} catch (ClassCastException e3) {
try {
boolean aBoolean = getBoolean(key, false);
isValueExists = !aBoolean;
} catch (Exception e4) {
isValueExists = false;
e.printStackTrace();
}
}
}
}
} catch (Exception e) {
isValueExists = false;
}
return isValueExists;
} | java | public boolean isValueExistForKey(String key) {
boolean isValueExists;
try {
String string = getString(key, "");
isValueExists = !string.equalsIgnoreCase("");
} catch (ClassCastException e) {
try {
int anInt = getInt(key, 0);
isValueExists = anInt != 0;
} catch (ClassCastException e1) {
try {
long aLong = getLong(key, 0);
isValueExists = aLong != 0;
} catch (ClassCastException e2) {
try {
float aFloat = getFloat(key, 0f);
isValueExists = aFloat != 0;
} catch (ClassCastException e3) {
try {
boolean aBoolean = getBoolean(key, false);
isValueExists = !aBoolean;
} catch (Exception e4) {
isValueExists = false;
e.printStackTrace();
}
}
}
}
} catch (Exception e) {
isValueExists = false;
}
return isValueExists;
} | [
"public",
"boolean",
"isValueExistForKey",
"(",
"String",
"key",
")",
"{",
"boolean",
"isValueExists",
";",
"try",
"{",
"String",
"string",
"=",
"getString",
"(",
"key",
",",
"\"\"",
")",
";",
"isValueExists",
"=",
"!",
"string",
".",
"equalsIgnoreCase",
"("... | Check if value exists for key.
@param key
: Key for which we need to check the value exists or not.
@return : <code>true</code> if the value exists and it's other than default data. | [
"Check",
"if",
"value",
"exists",
"for",
"key",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L209-L243 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.getString | public String getString(String key, String defaultValue) throws ClassCastException {
return sharedPreferences.getString(key, (defaultValue == null) ? "" : defaultValue);
} | java | public String getString(String key, String defaultValue) throws ClassCastException {
return sharedPreferences.getString(key, (defaultValue == null) ? "" : defaultValue);
} | [
"public",
"String",
"getString",
"(",
"String",
"key",
",",
"String",
"defaultValue",
")",
"throws",
"ClassCastException",
"{",
"return",
"sharedPreferences",
".",
"getString",
"(",
"key",
",",
"(",
"defaultValue",
"==",
"null",
")",
"?",
"\"\"",
":",
"default... | Retrieve a String value from the preferences.
@param key
The name of the preference to retrieve.
@param defaultValue
value to return when a key does not exists.
@return the preference value if it exists, or defValue. Throws ClassCastException if there is a preference with this name that is not a String.
@Throws ClassCastException : When a value exists in given key but it's not a string
@see android.content.SharedPreferences#getString(String, String) | [
"Retrieve",
"a",
"String",
"value",
"from",
"the",
"preferences",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L258-L261 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.restoreKey | public void restoreKey(String key) {
if (!key.equalsIgnoreCase("test_mode_opened")) {
String originalKey = key.substring(keyTestMode.length());
Object value = get(key);
put(originalKey, value);
clear(key);
}
} | java | public void restoreKey(String key) {
if (!key.equalsIgnoreCase("test_mode_opened")) {
String originalKey = key.substring(keyTestMode.length());
Object value = get(key);
put(originalKey, value);
clear(key);
}
} | [
"public",
"void",
"restoreKey",
"(",
"String",
"key",
")",
"{",
"if",
"(",
"!",
"key",
".",
"equalsIgnoreCase",
"(",
"\"test_mode_opened\"",
")",
")",
"{",
"String",
"originalKey",
"=",
"key",
".",
"substring",
"(",
"keyTestMode",
".",
"length",
"(",
")",
... | Restore the original value for the key after it has been changed in test mode.
@param key
: Key whose value is to be restored | [
"Restore",
"the",
"original",
"value",
"for",
"the",
"key",
"after",
"it",
"has",
"been",
"changed",
"in",
"test",
"mode",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L343-L350 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.get | public Object get(String key) {
try {
return getString(key, null);
} catch (ClassCastException e) {
try {
return getInt(key, 0);
} catch (ClassCastException e1) {
try {
return getLong(key, 0);
} catch (ClassCastException e2) {
try {
return getFloat(key, 0f);
} catch (ClassCastException e3) {
try {
return getBoolean(key, false);
} catch (Exception e4) {
e.printStackTrace();
}
}
}
}
}
return null;
} | java | public Object get(String key) {
try {
return getString(key, null);
} catch (ClassCastException e) {
try {
return getInt(key, 0);
} catch (ClassCastException e1) {
try {
return getLong(key, 0);
} catch (ClassCastException e2) {
try {
return getFloat(key, 0f);
} catch (ClassCastException e3) {
try {
return getBoolean(key, false);
} catch (Exception e4) {
e.printStackTrace();
}
}
}
}
}
return null;
} | [
"public",
"Object",
"get",
"(",
"String",
"key",
")",
"{",
"try",
"{",
"return",
"getString",
"(",
"key",
",",
"null",
")",
";",
"}",
"catch",
"(",
"ClassCastException",
"e",
")",
"{",
"try",
"{",
"return",
"getInt",
"(",
"key",
",",
"0",
")",
";",... | Get the value of the key.
@param key
The name of the preference to retrieve.
@return value of the preferences | [
"Get",
"the",
"value",
"of",
"the",
"key",
"."
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L360-L385 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.put | public void put(String key, Object value) {
if (value.getClass().equals(String.class)) {
putString(key, value.toString());
} else if (value.getClass().equals(Integer.class)) {
putInt(key, (Integer) value);
} else if (value.getClass().equals(Float.class)) {
putFloat(key, (Float) value);
} else if (value.getClass().equals(Long.class)) {
putLong(key, (Long) value);
} else if (value.getClass().equals(Boolean.class)) {
putBoolean(key, (Boolean) value);
} else {
putString(key, value.toString());
}
} | java | public void put(String key, Object value) {
if (value.getClass().equals(String.class)) {
putString(key, value.toString());
} else if (value.getClass().equals(Integer.class)) {
putInt(key, (Integer) value);
} else if (value.getClass().equals(Float.class)) {
putFloat(key, (Float) value);
} else if (value.getClass().equals(Long.class)) {
putLong(key, (Long) value);
} else if (value.getClass().equals(Boolean.class)) {
putBoolean(key, (Boolean) value);
} else {
putString(key, value.toString());
}
} | [
"public",
"void",
"put",
"(",
"String",
"key",
",",
"Object",
"value",
")",
"{",
"if",
"(",
"value",
".",
"getClass",
"(",
")",
".",
"equals",
"(",
"String",
".",
"class",
")",
")",
"{",
"putString",
"(",
"key",
",",
"value",
".",
"toString",
"(",
... | Put the value in given shared preference
@param key
the name of the preference to save
@param value
the value to save | [
"Put",
"the",
"value",
"in",
"given",
"shared",
"preference"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L395-L409 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.putString | public void putString(String key, String value) {
sharedPreferences.edit().putString(key, value).commit();
} | java | public void putString(String key, String value) {
sharedPreferences.edit().putString(key, value).commit();
} | [
"public",
"void",
"putString",
"(",
"String",
"key",
",",
"String",
"value",
")",
"{",
"sharedPreferences",
".",
"edit",
"(",
")",
".",
"putString",
"(",
"key",
",",
"value",
")",
".",
"commit",
"(",
")",
";",
"}"
] | put the string value to shared preference
@param key
the name of the preference to save
@param value
the name of the preference to modify.
@see android.content.SharedPreferences#edit()#putString(String, String) | [
"put",
"the",
"string",
"value",
"to",
"shared",
"preference"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L431-L433 | train |
PrashamTrivedi/SharedPreferenceInspector | sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java | SharedPreferenceUtils.putFloat | public void putFloat(String key, float value) {
sharedPreferences.edit().putFloat(key, value).commit();
} | java | public void putFloat(String key, float value) {
sharedPreferences.edit().putFloat(key, value).commit();
} | [
"public",
"void",
"putFloat",
"(",
"String",
"key",
",",
"float",
"value",
")",
"{",
"sharedPreferences",
".",
"edit",
"(",
")",
".",
"putFloat",
"(",
"key",
",",
"value",
")",
".",
"commit",
"(",
")",
";",
"}"
] | put the float value to shared preference
@param key
the name of the preference to save
@param value
the name of the preference to modify.
@see android.content.SharedPreferences#edit()#putFloat(String, float) | [
"put",
"the",
"float",
"value",
"to",
"shared",
"preference"
] | c04d567c4d0fc5e0f8cda308ca85df19c6b3b838 | https://github.com/PrashamTrivedi/SharedPreferenceInspector/blob/c04d567c4d0fc5e0f8cda308ca85df19c6b3b838/sharedpreferenceinspector/src/main/java/com/ceelites/sharedpreferenceinspector/Utils/SharedPreferenceUtils.java#L460-L462 | train |
fuinorg/event-store-commons | esjc/src/main/java/org/fuin/esc/esjc/CommonEvent2EventDataConverter.java | CommonEvent2EventDataConverter.convert | @Override
public final EventData convert(final CommonEvent commonEvent) {
// User's data
final String dataType = commonEvent.getDataType().asBaseType();
final SerializedDataType serUserDataType = new SerializedDataType(dataType);
final Serializer userDataSerializer = serRegistry.getSerializer(serUserDataType);
final byte[] serUserData = userDataSerializer.marshal(commonEvent.getData(), serUserDataType);
final byte[] serData;
if (userDataSerializer.getMimeType().matchEncoding(targetContentType)) {
serData = serUserData;
} else {
final Base64Data base64data = new Base64Data(serUserData);
final Serializer base64Serializer = serRegistry.getSerializer(Base64Data.SER_TYPE);
serData = base64Serializer.marshal(base64data, Base64Data.SER_TYPE);
}
// EscMeta
final EscMeta escMeta = EscSpiUtils.createEscMeta(serRegistry, targetContentType, commonEvent);
final SerializedDataType escMetaType = new SerializedDataType(EscMeta.TYPE.asBaseType());
final Serializer escMetaSerializer = getSerializer(escMetaType);
final byte[] escSerMeta = escMetaSerializer.marshal(escMeta, escMetaType);
// Create event data
final EventData.Builder builder = EventData.newBuilder().eventId(commonEvent.getId().asBaseType())
.type(dataType);
if (targetContentType.isJson()) {
builder.jsonData(serData);
builder.jsonMetadata(escSerMeta);
} else {
builder.data(serData);
builder.metadata(escSerMeta);
}
return builder.build();
} | java | @Override
public final EventData convert(final CommonEvent commonEvent) {
// User's data
final String dataType = commonEvent.getDataType().asBaseType();
final SerializedDataType serUserDataType = new SerializedDataType(dataType);
final Serializer userDataSerializer = serRegistry.getSerializer(serUserDataType);
final byte[] serUserData = userDataSerializer.marshal(commonEvent.getData(), serUserDataType);
final byte[] serData;
if (userDataSerializer.getMimeType().matchEncoding(targetContentType)) {
serData = serUserData;
} else {
final Base64Data base64data = new Base64Data(serUserData);
final Serializer base64Serializer = serRegistry.getSerializer(Base64Data.SER_TYPE);
serData = base64Serializer.marshal(base64data, Base64Data.SER_TYPE);
}
// EscMeta
final EscMeta escMeta = EscSpiUtils.createEscMeta(serRegistry, targetContentType, commonEvent);
final SerializedDataType escMetaType = new SerializedDataType(EscMeta.TYPE.asBaseType());
final Serializer escMetaSerializer = getSerializer(escMetaType);
final byte[] escSerMeta = escMetaSerializer.marshal(escMeta, escMetaType);
// Create event data
final EventData.Builder builder = EventData.newBuilder().eventId(commonEvent.getId().asBaseType())
.type(dataType);
if (targetContentType.isJson()) {
builder.jsonData(serData);
builder.jsonMetadata(escSerMeta);
} else {
builder.data(serData);
builder.metadata(escSerMeta);
}
return builder.build();
} | [
"@",
"Override",
"public",
"final",
"EventData",
"convert",
"(",
"final",
"CommonEvent",
"commonEvent",
")",
"{",
"// User's data",
"final",
"String",
"dataType",
"=",
"commonEvent",
".",
"getDataType",
"(",
")",
".",
"asBaseType",
"(",
")",
";",
"final",
"Ser... | Converts a common event into event data.
@param commonEvent
Event to convert.
@return Converted event as event data. | [
"Converts",
"a",
"common",
"event",
"into",
"event",
"data",
"."
] | ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c | https://github.com/fuinorg/event-store-commons/blob/ea175582d8cda2b5a6d2fe52bbb2f1c183eee77c/esjc/src/main/java/org/fuin/esc/esjc/CommonEvent2EventDataConverter.java#L84-L119 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/FunctionCall.java | FunctionCall.bindParameter | public FunctionCall bindParameter(Number number) {
int pos = bindings.size();
String parameterName = function.getNthParameter(pos);
bindings.put(parameterName, number);
return this;
} | java | public FunctionCall bindParameter(Number number) {
int pos = bindings.size();
String parameterName = function.getNthParameter(pos);
bindings.put(parameterName, number);
return this;
} | [
"public",
"FunctionCall",
"bindParameter",
"(",
"Number",
"number",
")",
"{",
"int",
"pos",
"=",
"bindings",
".",
"size",
"(",
")",
";",
"String",
"parameterName",
"=",
"function",
".",
"getNthParameter",
"(",
"pos",
")",
";",
"bindings",
".",
"put",
"(",
... | Bind a parameter number to a function.
@param number the number
@return this function instance | [
"Bind",
"a",
"parameter",
"number",
"to",
"a",
"function",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/FunctionCall.java#L38-L43 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/FunctionCall.java | FunctionCall.getParameter | public Number getParameter(String name) {
Number number = bindings.get(name);
if (number == null) {
throw new FuzzerException(function.getName() + ": undefined parameter '" + name + "'");
}
return number;
} | java | public Number getParameter(String name) {
Number number = bindings.get(name);
if (number == null) {
throw new FuzzerException(function.getName() + ": undefined parameter '" + name + "'");
}
return number;
} | [
"public",
"Number",
"getParameter",
"(",
"String",
"name",
")",
"{",
"Number",
"number",
"=",
"bindings",
".",
"get",
"(",
"name",
")",
";",
"if",
"(",
"number",
"==",
"null",
")",
"{",
"throw",
"new",
"FuzzerException",
"(",
"function",
".",
"getName",
... | Get a parameter assignment.
@param name the parameter name
@return the number | [
"Get",
"a",
"parameter",
"assignment",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/FunctionCall.java#L60-L66 | train |
datacleaner/AnalyzerBeans | components/writers/src/main/java/org/eobjects/analyzer/beans/writers/InsertIntoTableAnalyzer.java | InsertIntoTableAnalyzer.truncateIfNecesary | @Initialize(distributed = false)
public void truncateIfNecesary() {
if (truncateTable) {
final UpdateableDatastoreConnection con = datastore.openConnection();
try {
final SchemaNavigator schemaNavigator = con.getSchemaNavigator();
final Table table = schemaNavigator.convertToTable(schemaName, tableName);
final UpdateableDataContext dc = con.getUpdateableDataContext();
dc.executeUpdate(new UpdateScript() {
@Override
public void run(UpdateCallback callback) {
final RowDeletionBuilder delete = callback.deleteFrom(table);
if (logger.isInfoEnabled()) {
logger.info("Executing truncating DELETE operation: {}", delete.toSql());
}
delete.execute();
}
});
} finally {
con.close();
}
}
} | java | @Initialize(distributed = false)
public void truncateIfNecesary() {
if (truncateTable) {
final UpdateableDatastoreConnection con = datastore.openConnection();
try {
final SchemaNavigator schemaNavigator = con.getSchemaNavigator();
final Table table = schemaNavigator.convertToTable(schemaName, tableName);
final UpdateableDataContext dc = con.getUpdateableDataContext();
dc.executeUpdate(new UpdateScript() {
@Override
public void run(UpdateCallback callback) {
final RowDeletionBuilder delete = callback.deleteFrom(table);
if (logger.isInfoEnabled()) {
logger.info("Executing truncating DELETE operation: {}", delete.toSql());
}
delete.execute();
}
});
} finally {
con.close();
}
}
} | [
"@",
"Initialize",
"(",
"distributed",
"=",
"false",
")",
"public",
"void",
"truncateIfNecesary",
"(",
")",
"{",
"if",
"(",
"truncateTable",
")",
"{",
"final",
"UpdateableDatastoreConnection",
"con",
"=",
"datastore",
".",
"openConnection",
"(",
")",
";",
"try... | Truncates the database table if necesary. This is NOT a distributable
initializer, since it can only happen once. | [
"Truncates",
"the",
"database",
"table",
"if",
"necesary",
".",
"This",
"is",
"NOT",
"a",
"distributable",
"initializer",
"since",
"it",
"can",
"only",
"happen",
"once",
"."
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/writers/src/main/java/org/eobjects/analyzer/beans/writers/InsertIntoTableAnalyzer.java#L169-L193 | train |
ktoso/janbanery | janbanery-core/src/main/java/pl/project13/janbanery/core/rest/AsyncHttpClientRestClient.java | AsyncHttpClientRestClient.execute | public RestClientResponse execute(AsyncHttpClient.BoundRequestBuilder requestBuilder) throws RestClientException {
Response response;
try {
ListenableFuture<Response> futureResponse = requestBuilder.execute();
response = futureResponse.get();
if (log.isDebugEnabled()) {
// the if is here so that we don't call the getResponseBody() when we're not going to print it
log.debug("Got response body: {}", response.getResponseBody());
}
} catch (InterruptedException e) {
throw new RestClientException("Interrupted while waiting for server response", e);
} catch (ExecutionException e) {
throw new RestClientException("Tried to retrieve result from aborted action.", e);
} catch (IOException e) {
throw new RestClientException("Encountered IOException while executing REST request.", e);
}
return new NingRestClientResponse(response);
} | java | public RestClientResponse execute(AsyncHttpClient.BoundRequestBuilder requestBuilder) throws RestClientException {
Response response;
try {
ListenableFuture<Response> futureResponse = requestBuilder.execute();
response = futureResponse.get();
if (log.isDebugEnabled()) {
// the if is here so that we don't call the getResponseBody() when we're not going to print it
log.debug("Got response body: {}", response.getResponseBody());
}
} catch (InterruptedException e) {
throw new RestClientException("Interrupted while waiting for server response", e);
} catch (ExecutionException e) {
throw new RestClientException("Tried to retrieve result from aborted action.", e);
} catch (IOException e) {
throw new RestClientException("Encountered IOException while executing REST request.", e);
}
return new NingRestClientResponse(response);
} | [
"public",
"RestClientResponse",
"execute",
"(",
"AsyncHttpClient",
".",
"BoundRequestBuilder",
"requestBuilder",
")",
"throws",
"RestClientException",
"{",
"Response",
"response",
";",
"try",
"{",
"ListenableFuture",
"<",
"Response",
">",
"futureResponse",
"=",
"request... | Execute and throw RestClientException exceptions if the request could not be executed.
@param requestBuilder the request to be executed()
@return return the response fetched from the server
@throws RestClientException if the response could not be fetched | [
"Execute",
"and",
"throw",
"RestClientException",
"exceptions",
"if",
"the",
"request",
"could",
"not",
"be",
"executed",
"."
] | cd77b774814c7fbb2a0c9c55d4c3f7e76affa636 | https://github.com/ktoso/janbanery/blob/cd77b774814c7fbb2a0c9c55d4c3f7e76affa636/janbanery-core/src/main/java/pl/project13/janbanery/core/rest/AsyncHttpClientRestClient.java#L215-L235 | train |
umeding/fuzzer | src/main/java/com/uwemeding/fuzzer/Function.java | Function.addParameter | public void addParameter(String... paras) {
for (String parameter : paras) {
for (String knownDef : parameters) {
if (parameter.equals(knownDef)) {
throw new FuzzerException(name + ": parameter '" + parameter + "' already defined");
}
}
parameters.add(parameter);
}
} | java | public void addParameter(String... paras) {
for (String parameter : paras) {
for (String knownDef : parameters) {
if (parameter.equals(knownDef)) {
throw new FuzzerException(name + ": parameter '" + parameter + "' already defined");
}
}
parameters.add(parameter);
}
} | [
"public",
"void",
"addParameter",
"(",
"String",
"...",
"paras",
")",
"{",
"for",
"(",
"String",
"parameter",
":",
"paras",
")",
"{",
"for",
"(",
"String",
"knownDef",
":",
"parameters",
")",
"{",
"if",
"(",
"parameter",
".",
"equals",
"(",
"knownDef",
... | Add a function configuration parameter.
@param paras the parameter definition(s) | [
"Add",
"a",
"function",
"configuration",
"parameter",
"."
] | e8aa46313bb1d1328865f26f99455124aede828c | https://github.com/umeding/fuzzer/blob/e8aa46313bb1d1328865f26f99455124aede828c/src/main/java/com/uwemeding/fuzzer/Function.java#L53-L63 | train |
datacleaner/AnalyzerBeans | components/value-distribution/src/main/java/org/eobjects/analyzer/result/AbstractValueCountingAnalyzerResult.java | AbstractValueCountingAnalyzerResult.appendToString | protected void appendToString(StringBuilder sb, ValueCountingAnalyzerResult groupResult, int maxEntries) {
if (maxEntries != 0) {
Collection<ValueFrequency> valueCounts = groupResult.getValueCounts();
for (ValueFrequency valueCount : valueCounts) {
sb.append("\n - ");
sb.append(valueCount.getName());
sb.append(": ");
sb.append(valueCount.getCount());
maxEntries--;
if (maxEntries == 0) {
sb.append("\n ...");
break;
}
}
}
} | java | protected void appendToString(StringBuilder sb, ValueCountingAnalyzerResult groupResult, int maxEntries) {
if (maxEntries != 0) {
Collection<ValueFrequency> valueCounts = groupResult.getValueCounts();
for (ValueFrequency valueCount : valueCounts) {
sb.append("\n - ");
sb.append(valueCount.getName());
sb.append(": ");
sb.append(valueCount.getCount());
maxEntries--;
if (maxEntries == 0) {
sb.append("\n ...");
break;
}
}
}
} | [
"protected",
"void",
"appendToString",
"(",
"StringBuilder",
"sb",
",",
"ValueCountingAnalyzerResult",
"groupResult",
",",
"int",
"maxEntries",
")",
"{",
"if",
"(",
"maxEntries",
"!=",
"0",
")",
"{",
"Collection",
"<",
"ValueFrequency",
">",
"valueCounts",
"=",
... | Appends a string representation with a maximum amount of entries
@param sb
the StringBuilder to append to
@param maxEntries
@return | [
"Appends",
"a",
"string",
"representation",
"with",
"a",
"maximum",
"amount",
"of",
"entries"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/components/value-distribution/src/main/java/org/eobjects/analyzer/result/AbstractValueCountingAnalyzerResult.java#L179-L195 | train |
datacleaner/AnalyzerBeans | cli/src/main/java/org/eobjects/analyzer/cli/CliArguments.java | CliArguments.parse | public static CliArguments parse(String[] args) {
CliArguments arguments = new CliArguments();
if (args != null) {
CmdLineParser parser = new CmdLineParser(arguments);
try {
parser.parseArgument(args);
} catch (CmdLineException e) {
// ignore
}
arguments.usageMode = false;
for (String arg : args) {
for (int i = 0; i < USAGE_TOKENS.length; i++) {
String usageToken = USAGE_TOKENS[i];
if (usageToken.equalsIgnoreCase(arg)) {
arguments.usageMode = true;
break;
}
}
}
}
return arguments;
} | java | public static CliArguments parse(String[] args) {
CliArguments arguments = new CliArguments();
if (args != null) {
CmdLineParser parser = new CmdLineParser(arguments);
try {
parser.parseArgument(args);
} catch (CmdLineException e) {
// ignore
}
arguments.usageMode = false;
for (String arg : args) {
for (int i = 0; i < USAGE_TOKENS.length; i++) {
String usageToken = USAGE_TOKENS[i];
if (usageToken.equalsIgnoreCase(arg)) {
arguments.usageMode = true;
break;
}
}
}
}
return arguments;
} | [
"public",
"static",
"CliArguments",
"parse",
"(",
"String",
"[",
"]",
"args",
")",
"{",
"CliArguments",
"arguments",
"=",
"new",
"CliArguments",
"(",
")",
";",
"if",
"(",
"args",
"!=",
"null",
")",
"{",
"CmdLineParser",
"parser",
"=",
"new",
"CmdLineParser... | Parses the CLI arguments and creates a CliArguments instance
@param args
the arguments as a string array
@return
@throws CmdLineException | [
"Parses",
"the",
"CLI",
"arguments",
"and",
"creates",
"a",
"CliArguments",
"instance"
] | f82dae080d80d2a647b706a5fb22b3ea250613b3 | https://github.com/datacleaner/AnalyzerBeans/blob/f82dae080d80d2a647b706a5fb22b3ea250613b3/cli/src/main/java/org/eobjects/analyzer/cli/CliArguments.java#L44-L66 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.