code
stringlengths
73
34.1k
label
stringclasses
1 value
public static AccessorPrefix determineAccessorPrefix(@Nonnull final String methodName) { Check.notEmpty(methodName, "methodName"); final Matcher m = PATTERN.matcher(methodName); Check.stateIsTrue(m.find(), "passed method name '%s' is not applicable", methodName); return new AccessorPrefix(m.group(1)); }
java
public static String determineFieldName(@Nonnull final String methodName) { Check.notEmpty(methodName, "methodName"); final Matcher m = PATTERN.matcher(methodName); Check.stateIsTrue(m.find(), "passed method name '%s' is not applicable", methodName); return m.group(2).substring(0, 1).toLowerCase() + m.group(2)....
java
public static <T extends JsonRtn> T parseJsonRtn(String jsonRtn, Class<T> jsonRtnClazz) { T rtn = JSONObject.parseObject(jsonRtn, jsonRtnClazz); appendErrorHumanMsg(rtn); return rtn; }
java
private static JsonRtn appendErrorHumanMsg(JsonRtn jsonRtn) { if (bundle == null || jsonRtn == null || StringUtils.isEmpty(jsonRtn.getErrCode())) { return null; } try { jsonRtn.setErrHumanMsg(bundle.getString(jsonRtn.getErrCode())); return jsonRtn; } ...
java
public static boolean isSuccess(JsonRtn jsonRtn) { if (jsonRtn == null) { return false; } String errCode = jsonRtn.getErrCode(); if (StringUtils.isEmpty(errCode) || StringUtils.equals(WECHAT_JSON_RTN_SUCCESS_CODE, errCode)) { return true; } retur...
java
public static Object unmarshal(String message, Class<?> childClass) { try { Class<?>[] reverseAndToArray = Iterables.toArray(Lists.reverse(getAllSuperTypes(childClass)), Class.class); JAXBContext jaxbCtx = JAXBContext.newInstance(reverseAndToArray); Unmarshaller unmarshaller ...
java
public static String marshal(Object object) { if (object == null) { return null; } try { JAXBContext jaxbCtx = JAXBContext.newInstance(object.getClass()); Marshaller marshaller = jaxbCtx.createMarshaller(); marshaller.setProperty(Marshaller.JAXB_...
java
private Properties parseFile(File file) throws InvalidDeclarationFileException { Properties properties = new Properties(); InputStream is = null; try { is = new FileInputStream(file); properties.load(is); } catch (Exception e) { throw new InvalidDeclar...
java
private D createAndRegisterDeclaration(Map<String, Object> metadata) { D declaration; if (klass.equals(ImportDeclaration.class)) { declaration = (D) ImportDeclarationBuilder.fromMetadata(metadata).build(); } else if (klass.equals(ExportDeclaration.class)) { declaration = ...
java
void start(String monitoredDirectory, Long pollingTime) { this.monitoredDirectory = monitoredDirectory; String deployerKlassName; if (klass.equals(ImportDeclaration.class)) { deployerKlassName = ImporterDeployer.class.getName(); } else if (klass.equals(ExportDeclaration.class...
java
void stop() { try { dm.stop(getBundleContext()); } catch (DirectoryMonitoringException e) { LOG.error("Failed to stop " + DirectoryMonitor.class.getName() + " for the directory " + monitoredDirectory, e); } declarationsFiles.clear(); declarationRegistratio...
java
public static double calculateBoundedness(double D, int N, double timelag, double confRadius){ double r = confRadius; double cov_area = a(N)*D*timelag; double res = cov_area/(4*r*r); return res; }
java
public static double getRadiusToBoundedness(double D, int N, double timelag, double B){ double cov_area = a(N)*D*timelag; double radius = Math.sqrt(cov_area/(4*B)); return radius; }
java
@ArgumentsChecked @Throws(IllegalNullArgumentException.class) public static byte checkByte(@Nonnull final Number number) { Check.notNull(number, "number"); if (!isInByteRange(number)) { throw new IllegalNumberRangeException(number.toString(), BYTE_MIN, BYTE_MAX); } return number.byteValue(); }
java
@ArgumentsChecked @Throws(IllegalNullArgumentException.class) public static double checkDouble(@Nonnull final Number number) { Check.notNull(number, "number"); if (!isInDoubleRange(number)) { throw new IllegalNumberRangeException(number.toString(), DOUBLE_MIN, DOUBLE_MAX); } return number.doubleValue(); ...
java
@ArgumentsChecked @Throws(IllegalNullArgumentException.class) public static float checkFloat(@Nonnull final Number number) { Check.notNull(number, "number"); if (!isInFloatRange(number)) { throw new IllegalNumberRangeException(number.toString(), FLOAT_MIN, FLOAT_MAX); } return number.floatValue(); }
java
@ArgumentsChecked @Throws(IllegalNullArgumentException.class) public static int checkInteger(@Nonnull final Number number) { Check.notNull(number, "number"); if (!isInIntegerRange(number)) { throw new IllegalNumberRangeException(number.toString(), INTEGER_MIN, INTEGER_MAX); } return number.intValue(); }
java
@ArgumentsChecked @Throws(IllegalNullArgumentException.class) public static int checkLong(@Nonnull final Number number) { Check.notNull(number, "number"); if (!isInLongRange(number)) { throw new IllegalNumberRangeException(number.toString(), LONG_MIN, LONG_MAX); } return number.intValue(); }
java
@ArgumentsChecked @Throws(IllegalNullArgumentException.class) public static short checkShort(@Nonnull final Number number) { Check.notNull(number, "number"); if (!isInShortRange(number)) { throw new IllegalNumberRangeException(number.toString(), SHORT_MIN, SHORT_MAX); } return number.shortValue(); }
java
public double estimateExcludedVolumeFraction(){ //Calculate volume/area of the of the scene without obstacles if(recalculateVolumeFraction){ CentralRandomNumberGenerator r = CentralRandomNumberGenerator.getInstance(); boolean firstRandomDraw = false; if(randomNumbers==null){ randomNumbers = new double[...
java
private void handleMultiInstanceReportResponse(SerialMessage serialMessage, int offset) { logger.trace("Process Multi-instance Report"); int commandClassCode = serialMessage.getMessagePayloadByte(offset); int instances = serialMessage.getMessagePayloadByte(offset + 1); if (instances == 0) { setIns...
java
private void handleMultiInstanceEncapResponse( SerialMessage serialMessage, int offset) { logger.trace("Process Multi-instance Encapsulation"); int instance = serialMessage.getMessagePayloadByte(offset); int commandClassCode = serialMessage.getMessagePayloadByte(offset + 1); CommandClass commandClass = ...
java
private void handleMultiChannelEncapResponse( SerialMessage serialMessage, int offset) { logger.trace("Process Multi-channel Encapsulation"); CommandClass commandClass; ZWaveCommandClass zwaveCommandClass; int endpointId = serialMessage.getMessagePayloadByte(offset); int commandClassCode = serialMess...
java
public SerialMessage getMultiInstanceGetMessage(CommandClass commandClass) { logger.debug("Creating new message for application command MULTI_INSTANCE_GET for node {} and command class {}", this.getNode().getNodeId(), commandClass.getLabel()); SerialMessage result = new SerialMessage(this.getNode().getNodeId(), S...
java
public SerialMessage getMultiChannelCapabilityGetMessage(ZWaveEndpoint endpoint) { logger.debug("Creating new message for application command MULTI_CHANNEL_CAPABILITY_GET for node {} and endpoint {}", this.getNode().getNodeId(), endpoint.getEndpointId()); SerialMessage result = new SerialMessage(this.getNode().ge...
java
public synchronized void createImportationDeclaration(String deviceId, String deviceType, String deviceSubType) { Map<String, Object> metadata = new HashMap<String, Object>(); metadata.put(Constants.DEVICE_ID, deviceId); metadata.put(Constants.DEVICE_TYPE, deviceType); metadata.put(Const...
java
public static Dimension getDimension(File videoFile) throws IOException { try (FileInputStream fis = new FileInputStream(videoFile)) { return getDimension(fis, new AtomicReference<ByteBuffer>()); } }
java
public static String determineAccessorName(@Nonnull final AccessorPrefix prefix, @Nonnull final String fieldName) { Check.notNull(prefix, "prefix"); Check.notEmpty(fieldName, "fieldName"); final Matcher m = PATTERN.matcher(fieldName); Check.stateIsTrue(m.find(), "passed field name '%s' is not applicable", field...
java
public static String determineMutatorName(@Nonnull final String fieldName) { Check.notEmpty(fieldName, "fieldName"); final Matcher m = PATTERN.matcher(fieldName); Check.stateIsTrue(m.find(), "passed field name '%s' is not applicable", fieldName); final String name = m.group(); return METHOD_SET_PREFIX + name....
java
@Nonnull public static XMLDSigValidationResult createReferenceErrors (@Nonnull @Nonempty final List <Integer> aInvalidReferences) { return new XMLDSigValidationResult (aInvalidReferences); }
java
public static Chart getTrajectoryChart(String title, Trajectory t){ if(t.getDimension()==2){ double[] xData = new double[t.size()]; double[] yData = new double[t.size()]; for(int i = 0; i < t.size(); i++){ xData[i] = t.get(i).x; yData[i] = t.get(i).y; } // Create Char...
java
public static Chart getMSDLineChart(Trajectory t, int lagMin, int lagMax, AbstractMeanSquaredDisplacmentEvaluator msdeval) { double[] xData = new double[lagMax - lagMin + 1]; double[] yData = new double[lagMax - lagMin + 1]; msdeval.setTrajectory(t); msdeval.setTimelag(lagMin); for (int i = lagMin; i < la...
java
public static Chart getMSDLineWithConfinedModelChart(Trajectory t, int lagMin, int lagMax, double timelag, double a, double b, double c, double d) { double[] xData = new double[lagMax - lagMin + 1]; double[] yData = new double[lagMax - lagMin + 1]; double[] modelData = new double[lagMax - lagMin + 1]; MeanS...
java
public static Chart getMSDLineWithPowerModelChart(Trajectory t, int lagMin, int lagMax, double timelag, double a, double D) { double[] xData = new double[lagMax - lagMin + 1]; double[] yData = new double[lagMax - lagMin + 1]; double[] modelData = new double[lagMax - lagMin + 1]; MeanSquaredDisplacmentFeatur...
java
public static Chart getMSDLineWithFreeModelChart(Trajectory t, int lagMin, int lagMax, double timelag, double diffusionCoefficient, double intercept) { double[] xData = new double[lagMax - lagMin + 1]; double[] yData = new double[lagMax - lagMin + 1]; double[] modelData = new double[lagMax - lagMin + 1]; Me...
java
public static Chart getMSDLineWithActiveTransportModelChart(Trajectory t, int lagMin, int lagMax, double timelag, double diffusionCoefficient, double velocity) { double[] xData = new double[lagMax - lagMin + 1]; double[] yData = new double[lagMax - lagMin + 1]; double[] modelData = new double[lagMax - lagMin ...
java
public static Chart getMSDLineChart(Trajectory t, int lagMin, int lagMax) { return getMSDLineChart(t, lagMin, lagMax, new MeanSquaredDisplacmentFeature(t, lagMin)); }
java
public static void plotCharts(List<Chart> charts){ int numRows =1; int numCols =1; if(charts.size()>1){ numRows = (int) Math.ceil(charts.size()/2.0); numCols = 2; } final JFrame frame = new JFrame(""); frame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE); frame.getContentPane().setLay...
java
@Nullable public Import find(@Nonnull final String typeName) { Check.notEmpty(typeName, "typeName"); Import ret = null; final Type type = new Type(typeName); for (final Import imp : imports) { if (imp.getType().getName().equals(type.getName())) { ret = imp; break; } } if (ret == null) { fi...
java
private void query(String zipcode) { /* Setup YQL query statement using dynamic zipcode. The statement searches geo.places for the zipcode and returns XML which includes the WOEID. For more info about YQL go to: http://developer.yahoo.com/yql/ */ ...
java
private void parseResponse(InputStream inputStream) { try { DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance(); DocumentBuilder dBuilder = dbFactory.newDocumentBuilder(); Document doc = dBuilder.parse(inputStream); doc.getDocumentElement().no...
java
@Nonnull public static InterfaceAnalysis analyze(@Nonnull final String code) { Check.notNull(code, "code"); final CompilationUnit unit = Check.notNull(SourceCodeReader.parse(code), "compilationUnit"); final List<TypeDeclaration> types = Check.notEmpty(unit.getTypes(), "typeDeclarations"); Check.stateIsTrue(ty...
java
public Integer next() { for(int i = currentIndex; i < t.size(); i++){ if(i+timelag>=t.size()){ return null; } if((t.get(i) != null) && (t.get(i+timelag) != null)){ if(overlap){ currentIndex = i+1; } else{ currentIndex = i+timelag; } return i; } } return null; }
java
private static boolean matches(@Nonnull final Pattern pattern, @Nonnull final CharSequence chars) { return pattern.matcher(chars).matches(); }
java
@ArgumentsChecked @Throws({ IllegalNullArgumentException.class, IllegalNumberArgumentException.class }) public static void isNumber(final boolean condition, @Nonnull final String value) { if (condition) { Check.isNumber(value); } }
java
@Override public Trajectory subList(int fromIndex, int toIndex) { Trajectory t = new Trajectory(dimension); for(int i = fromIndex; i < toIndex; i++){ t.add(this.get(i)); } return t; }
java
public double[][] getPositionsAsArray(){ double[][] posAsArr = new double[size()][3]; for(int i = 0; i < size(); i++){ if(get(i)!=null){ posAsArr[i][0] = get(i).x; posAsArr[i][1] = get(i).y; posAsArr[i][2] = get(i).z; } else{ posAsArr[i] = null; } } return posAsArr; }
java
public void scale(double v){ for(int i = 0; i < this.size(); i++){ this.get(i).scale(v);; } }
java
public static int randomIntBetween(int min, int max) { Random rand = new Random(); return rand.nextInt((max - min) + 1) + min; }
java
public static long randomLongBetween(long min, long max) { Random rand = new Random(); return min + (long) (rand.nextDouble() * (max - min)); }
java
private static int getTrimmedXStart(BufferedImage img) { int height = img.getHeight(); int width = img.getWidth(); int xStart = width; for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (img.getRGB(j, i) != Color.WHITE.getRGB() && j < xStart) { xStart = j; ...
java
private static int getTrimmedWidth(BufferedImage img) { int height = img.getHeight(); int width = img.getWidth(); int trimmedWidth = 0; for (int i = 0; i < height; i++) { for (int j = width - 1; j >= 0; j--) { if (img.getRGB(j, i) != Color.WHITE.getRGB() && j > trimmedWidth) { t...
java
private static int getTrimmedYStart(BufferedImage img) { int width = img.getWidth(); int height = img.getHeight(); int yStart = height; for (int i = 0; i < width; i++) { for (int j = 0; j < height; j++) { if (img.getRGB(i, j) != Color.WHITE.getRGB() && j < yStart) { yStart = j; ...
java
private static int getTrimmedHeight(BufferedImage img) { int width = img.getWidth(); int height = img.getHeight(); int trimmedHeight = 0; for (int i = 0; i < width; i++) { for (int j = height - 1; j >= 0; j--) { if (img.getRGB(i, j) != Color.WHITE.getRGB() && j > trimmedHeight) { ...
java
public static BufferedImage resizeToHeight(BufferedImage originalImage, int heightOut) { int width = originalImage.getWidth(); int height = originalImage.getHeight(); int heightPercent = (heightOut * 100) / height; int newWidth = (width * heightPercent) / 100; BufferedImage resizedImage = ...
java
public static BufferedImage resizeToWidth(BufferedImage originalImage, int widthOut) { int width = originalImage.getWidth(); int height = originalImage.getHeight(); int widthPercent = (widthOut * 100) / width; int newHeight = (height * widthPercent) / 100; BufferedImage resi...
java
public static String regexFindFirst(String pattern, String str) { return regexFindFirst(Pattern.compile(pattern), str, 1); }
java
public static List<String> asListLines(String content) { List<String> retorno = new ArrayList<String>(); content = content.replace(CARRIAGE_RETURN, RETURN); content = content.replace(RETURN, CARRIAGE_RETURN); for (String str : content.split(CARRIAGE_RETURN)) { retorno.add(str); } return re...
java
public static List<String> asListLinesIgnore(String content, Pattern ignorePattern) { List<String> retorno = new ArrayList<String>(); content = content.replace(CARRIAGE_RETURN, RETURN); content = content.replace(RETURN, CARRIAGE_RETURN); for (String str : content.split(CARRIAGE_RETURN)) { if (!ign...
java
public static Map<String, String> getContentMap(File file, String separator) throws IOException { List<String> content = getContentLines(file); Map<String, String> map = new LinkedHashMap<String, String>(); for (String line : content) { String[] spl = line.split(separator); if (line.trim(...
java
public static void saveContentMap(Map<String, String> map, File file) throws IOException { FileWriter out = new FileWriter(file); for (String key : map.keySet()) { if (map.get(key) != null) { out.write(key.replace(":", "#escapedtwodots#") + ":" + map.get(key).replace(":", "#escapedtwo...
java
public static String getTabularData(String[] labels, String[][] data, int padding) { int[] size = new int[labels.length]; for (int i = 0; i < labels.length; i++) { size[i] = labels[i].length() + padding; } for (String[] row : data) { for (int i = 0; i < labels.length; i++) { ...
java
public static String replaceHtmlEntities(String content, Map<String, Character> map) { for (Entry<String, Character> entry : escapeStrings.entrySet()) { if (content.indexOf(entry.getKey()) != -1) { content = content.replace(entry.getKey(), String.valueOf(entry.getValue())); } ...
java
public void add(ServiceReference<S> declarationBinderRef) throws InvalidFilterException { BinderDescriptor binderDescriptor = new BinderDescriptor(declarationBinderRef); declarationBinders.put(declarationBinderRef, binderDescriptor); }
java
public void modified(ServiceReference<S> declarationBinderRef) throws InvalidFilterException { declarationBinders.get(declarationBinderRef).update(declarationBinderRef); }
java
public void createLinks(ServiceReference<S> declarationBinderRef) { for (D declaration : linkerManagement.getMatchedDeclaration()) { if (linkerManagement.canBeLinked(declaration, declarationBinderRef)) { linkerManagement.link(declaration, declarationBinderRef); } ...
java
public void updateLinks(ServiceReference<S> serviceReference) { for (D declaration : linkerManagement.getMatchedDeclaration()) { boolean isAlreadyLinked = declaration.getStatus().getServiceReferencesBounded().contains(serviceReference); boolean canBeLinked = linkerManagement.canBeLinked(...
java
public void removeLinks(ServiceReference<S> declarationBinderRef) { for (D declaration : linkerManagement.getMatchedDeclaration()) { if (declaration.getStatus().getServiceReferencesBounded().contains(declarationBinderRef)) { linkerManagement.unlink(declaration, declarationBinderRef);...
java
public Set<S> getMatchedDeclarationBinder() { Set<S> bindedSet = new HashSet<S>(); for (Map.Entry<ServiceReference<S>, BinderDescriptor> e : declarationBinders.entrySet()) { if (e.getValue().match) { bindedSet.add(getDeclarationBinder(e.getKey())); } } ...
java
public static List<File> extract(File zipFile, File outputFolder) throws IOException { List<File> extracted = new ArrayList<File>(); byte[] buffer = new byte[2048]; if (!outputFolder.exists()) { outputFolder.mkdir(); } ZipInputStream zipInput = new ZipInputStream(new FileInputStream(zipFile...
java
public static void validateZip(File file) throws IOException { ZipInputStream zipInput = new ZipInputStream(new FileInputStream(file)); ZipEntry zipEntry = zipInput.getNextEntry(); while (zipEntry != null) { zipEntry = zipInput.getNextEntry(); } try { if (zipInput != null) { zi...
java
public static void compress(File dir, File zipFile) throws IOException { FileOutputStream fos = new FileOutputStream(zipFile); ZipOutputStream zos = new ZipOutputStream(fos); recursiveAddZip(dir, zos, dir); zos.finish(); zos.close(); }
java
public static void recursiveAddZip(File parent, ZipOutputStream zout, File fileSource) throws IOException { File[] files = fileSource.listFiles(); for (int i = 0; i < files.length; i++) { if (files[i].isDirectory()) { recursiveAddZip(parent, zout, files[i]); continue; } ...
java
public static String readContent(InputStream is) { String ret = ""; try { String line; BufferedReader in = new BufferedReader(new InputStreamReader(is)); StringBuffer out = new StringBuffer(); while ((line = in.readLine()) != null) { out.append(line).append(CARRIAGE_RETURN); ...
java
public static boolean streamHasText(InputStream in, String text) { final byte[] readBuffer = new byte[8192]; StringBuffer sb = new StringBuffer(); try { if (in.available() > 0) { int bytesRead = 0; while ((bytesRead = in.read(readBuffer)) != -1) { sb.append(new String(readBu...
java
private static void tryWritePreferenceOnDisk(Preferences preference) throws BackingStoreException { final String DUMMY_PROP="dummywrite"; instance.put(DUMMY_PROP,"test"); instance.flush(); instance.remove(DUMMY_PROP); instance.flush(); }
java
private void doSend(byte[] msg, boolean wait, KNXAddress dst) throws KNXAckTimeoutException, KNXLinkClosedException { if (closed) throw new KNXLinkClosedException("link closed"); try { logger.info("send message to " + dst + (wait ? ", wait for ack" : "")); logger.trace("EMI " + DataUnitBuilder.to...
java
static public String bb2hex(byte[] bb) { String result = ""; for (int i=0; i<bb.length; i++) { result = result + String.format("%02X ", bb[i]); } return result; }
java
private static byte calculateChecksum(byte[] buffer) { byte checkSum = (byte)0xFF; for (int i=1; i<buffer.length-1; i++) { checkSum = (byte) (checkSum ^ buffer[i]); } logger.trace(String.format("Calculated checksum = 0x%02X", checkSum)); return checkSum; }
java
public byte[] getMessageBuffer() { ByteArrayOutputStream resultByteBuffer = new ByteArrayOutputStream(); byte[] result; resultByteBuffer.write((byte)0x01); int messageLength = messagePayload.length + (this.messageClass == SerialMessageClass.SendData && this.messageType == SerialMessageType.Request ? 5...
java
private static String getBundle(String friendlyName, String className, int truncate) { try { cl.loadClass(className); int start = className.length(); for (int i = 0; i < truncate; ++i) start = className.lastIndexOf('.', start - 1); final String bundle = className.substring(0, start); retur...
java
protected ServiceRegistration registerProxy(Object objectProxy, Class clazz) { Dictionary<String, Object> props = new Hashtable<String, Object>(); ServiceRegistration registration; registration = context.registerService(clazz, objectProxy, props); return registration; }
java
@Override protected void denyImportDeclaration(ImportDeclaration importDeclaration) { LOG.debug("CXFImporter destroy a proxy for " + importDeclaration); ServiceRegistration serviceRegistration = map.get(importDeclaration); serviceRegistration.unregister(); // set the importDeclarati...
java
public static Result generate(@Nonnull final String code, @Nonnull final ImmutableSettings settings) { Check.notNull(code, "code"); final ImmutableSettings.Builder settingsBuilder = new ImmutableSettings.Builder(Check.notNull(settings, "settings")); final InterfaceAnalysis analysis = InterfaceAnalyzer.analyze(co...
java
public static void addJarToClasspath(ClassLoader loader, URL url) throws IOException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException { URLClassLoader sysloader = (URLClassLoader) loader; Class<?> sysclass = URLClassLoader.class; ...
java
public void resetResendCount() { this.resendCount = 0; if (this.initializationComplete) this.nodeStage = NodeStage.NODEBUILDINFO_DONE; this.lastUpdated = Calendar.getInstance().getTime(); }
java
public void addCommandClass(ZWaveCommandClass commandClass) { ZWaveCommandClass.CommandClass key = commandClass.getCommandClass(); if (!supportedCommandClasses.containsKey(key)) { supportedCommandClasses.put(key, commandClass); if (commandClass instanceof ZWaveEventListener) this.controller.addEve...
java
public static String getPostString(InputStream is, String encoding) { try { StringWriter sw = new StringWriter(); IOUtils.copy(is, sw, encoding); return sw.toString(); } catch (IOException e) { // no op return null; } finally { ...
java
public static void outputString(final HttpServletResponse response, final Object obj) { try { response.setContentType("text/javascript"); response.setCharacterEncoding("utf-8"); disableCache(response); response.getWriter().write(obj.toString()); respon...
java
public double convert(double value, double temperatur, double viscosity){ return temperatur*kB / (Math.PI*viscosity*value); }
java
public static <T> T buildInstanceForMap(Class<T> clazz, Map<String, Object> values) throws InstantiationException, IllegalAccessException, IntrospectionException, IllegalArgumentException, InvocationTargetException { return buildInstanceForMap(clazz, values, new MyDefaultReflectionDifferenceHandler()); ...
java
public static <T> T buildInstanceForMap(Class<T> clazz, Map<String, Object> values, MyReflectionDifferenceHandler differenceHandler) throws InstantiationException, IllegalAccessException, IntrospectionException, IllegalArgumentException, InvocationTargetException { log.debug("Building new instance of C...
java
private static BundleCapability getExportedPackage(BundleContext context, String packageName) { List<BundleCapability> packages = new ArrayList<BundleCapability>(); for (Bundle bundle : context.getBundles()) { BundleRevision bundleRevision = bundle.adapt(BundleRevision.class); fo...
java
private String[] readXMLDeclaration(Reader r) throws KNXMLException { final StringBuffer buf = new StringBuffer(100); try { for (int c = 0; (c = r.read()) != -1 && c != '?';) buf.append((char) c); } catch (final IOException e) { throw new KNXMLException("reading XML declaration, " + e.getMess...
java
private Long fetchServiceId(ServiceReference serviceReference) { return (Long) serviceReference.getProperty(org.osgi.framework.Constants.SERVICE_ID); }
java
public void setSpecificDeviceClass(Specific specificDeviceClass) throws IllegalArgumentException { // The specific Device class does not match the generic device class. if (specificDeviceClass.genericDeviceClass != Generic.NOT_KNOWN && specificDeviceClass.genericDeviceClass != this.genericDeviceClass) ...
java
private String parseRssFeed(String feed) { String[] result = feed.split("<br />"); String[] result2 = result[2].split("<BR />"); return result2[0]; }
java
private List<String> parseRssFeedForeCast(String feed) { String[] result = feed.split("<br />"); List<String> returnList = new ArrayList<String>(); String[] result2 = result[2].split("<BR />"); returnList.add(result2[3] + "\n"); returnList.add(result[3] + "\n"); returnLi...
java
public SerialMessage getMessage(AlarmType alarmType) { logger.debug("Creating new message for application command SENSOR_ALARM_GET for node {}", this.getNode().getNodeId()); SerialMessage result = new SerialMessage(this.getNode().getNodeId(), SerialMessage.SerialMessageClass.SendData, SerialMessage.SerialMessageT...
java
public SerialMessage getSupportedMessage() { logger.debug("Creating new message for application command SENSOR_ALARM_SUPPORTED_GET for node {}", this.getNode().getNodeId()); if (this.getNode().getManufacturer() == 0x010F && this.getNode().getDeviceType() == 0x0501) { logger.warn("Detected Fibaro FGBS001 U...
java