hexsha
stringlengths
40
40
size
int64
8
1.04M
content
stringlengths
8
1.04M
avg_line_length
float64
2.24
100
max_line_length
int64
4
1k
alphanum_fraction
float64
0.25
0.97
6d746a1079ab0ae4a8f1c3ac119771f88849a34e
704
package ru.illine.weather.geomagnetic.mapper.impl; import ru.illine.weather.geomagnetic.dao.entity.ForecastEntity; import ru.illine.weather.geomagnetic.mapper.AbstractDtoMapper; import ru.illine.weather.geomagnetic.model.dto.ForecastDto; import org.modelmapper.ModelMapper; import org.springframework.stereotype.Component; @Component public class ForecastDtoMapper extends AbstractDtoMapper<ForecastEntity, ForecastDto> { public ForecastDtoMapper(ModelMapper modelMapper) { super(modelMapper); } @Override protected void setupMapper() { modelMapper.createTypeMap(sourceClass, destinationClass); modelMapper.createTypeMap(destinationClass, sourceClass); } }
33.52381
87
0.794034
44b27a94a7ad627063a661bed0747d69bdf2b863
1,226
package org.cswiktionary2rdf.cli.tasks; public class HelpTask implements Task { @Override public void execute() { System.out.println("RDF-Wiktionary project enables extraction from unstructured data into" + "a structured RDF format.\n\n" + "Available formats of RDF output are: RDF/XML, Turtle and n-triples.\n" + "You can choose the format by typing <-x>/<-t>/<-n> respectively into the format argument.\n" + "There are several possible scenarion for running this program. They always start with\n" + "\"cswiktionary2rdf.jar -jar\"\n\n" + "1. Download the dump file from the internet into default download directory:\n" + " -d\n" + "2. Download the dump file into a specified directory:\n" + " -d <dir path>\n" + "3. Extract a specified dump file into a specified output file:\n" + " -e <format> <dump file> <output file>\n\n" + "Example of the execution:\n" + "cswiktionary2rdf.jar -jar -e -t dump.xml output.ttl\n\n" + "For viewing this help again, type in \"-h\"."); } }
53.304348
111
0.570147
bf1c451819ac9d7e7f27ddc2a56d9563ced38818
323
package hutchison.grant; public abstract class Shape2D implements Comparable<Shape2D> { private double area; public abstract double getArea(); @Override public int compareTo(Shape2D s) { if (area > s.getArea()) { return 1; } else if (area < s.getArea()) { return -1; } return 0; } }
17.944444
61
0.634675
04964df8e4375b383db54b42df51fdc008326f8c
2,922
package se.avelon.edge.stocks; import java.awt.BorderLayout; import java.awt.Dimension; import java.util.Vector; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTabbedPane; import javax.swing.ListSelectionModel; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import se.avelon.edge.eventhandling.EventManager; import se.avelon.edge.omx.datafeed.CandleFeedInterface; import se.avelon.edge.omx.datafeed.InterfaceFactory; import se.avelon.edge.omx.datafeed.StockData; import se.avelon.edge.utilities.DajoLogger; public class DajoStockListPanel extends JScrollPane implements ChangeListener { private static final long serialVersionUID = 1L; private static final DajoLogger log = DajoLogger.getLogger(DajoStockListPanel.class); static private JPanel panel = new JPanel(); private DajoStockList list = new DajoStockList(); public DajoStockListPanel() { super(panel); log.constructor("MyStockListPanel()"); panel.setLayout(new BorderLayout()); panel.add(new DajoStockFilterField(16, list), BorderLayout.NORTH); panel.add(list, BorderLayout.CENTER); // Properties this.setPreferredSize(new Dimension(256,256)); list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); // Register EventManager.getInstance().registerListSelection(list, "stock.list"); // Subscribe EventManager.getInstance().subscribeOnChange("main.tabs", this); // Actions this.collectStocks(); this.startup(1); } public void startup(int i) { log.info("Send list event with new stock"); list.setSelectedIndex(i); } private void collectStocks() { String tmp[] = new String[] {CandleFeedInterface.LARGE_CAP, CandleFeedInterface.MID_CAP, CandleFeedInterface.SMALL_CAP}; CandleFeedInterface iface = InterfaceFactory.getFeeder(); //new OmxCandleFeedAdapter(); Vector<StockData> stocks = iface.getStocks(tmp); stocks.insertElementAt(new StockData("OMX30", "Stockholm", "SE0000337842"), 0); list.setListData(stocks); } public void stateChanged(ChangeEvent e) { JTabbedPane sourceTabbedPane = (JTabbedPane) e.getSource(); int index = sourceTabbedPane.getSelectedIndex(); log.info("New tab triggered " + sourceTabbedPane.getTitleAt(index)); if(sourceTabbedPane.getTitleAt(index).compareTo(" Technical Analysis ") == 0) { list.setEnabled(true); } else if(sourceTabbedPane.getTitleAt(index).compareTo(" Scatter ") == 0) { list.setEnabled(true); } else if(sourceTabbedPane.getTitleAt(index).compareTo(" Mine ") == 0) { list.setEnabled(true); } else if(sourceTabbedPane.getTitleAt(index).compareTo("=Line=") == 0) { list.setEnabled(true); } else if(sourceTabbedPane.getTitleAt(index).compareTo("Combined") == 0) { list.setEnabled(true); } else if(sourceTabbedPane.getTitleAt(index).compareTo("Chart") == 0) { list.setEnabled(true); } else { list.setEnabled(false); } } }
30.757895
122
0.75154
b5c2729031ece4c857960009f16a30f9be64f3e7
2,750
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.tinkerpop.gremlin.groovy.jsr223.customizer; import groovy.transform.TypeChecked; import org.apache.tinkerpop.gremlin.groovy.CompilerCustomizerProvider; import org.apache.tinkerpop.gremlin.jsr223.Customizer; import org.codehaus.groovy.control.customizers.ASTTransformationCustomizer; import org.codehaus.groovy.control.customizers.CompilationCustomizer; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.stream.Collectors; import java.util.stream.Stream; /** * Injects the {@code TypeChecked} transformer to enable type validation on script execution. * * @author Stephen Mallette (http://stephen.genoprime.com) * @deprecated As of release 3.2.4, not replaced by a public class. */ @Deprecated public class TypeCheckedCustomizerProvider implements CompilerCustomizerProvider { private final String extensions; public TypeCheckedCustomizerProvider() { this(null); } /** * Configures the {@code TypeChecked} annotation to use optional extensions. The argument should be one or more * groovy scripts on the classpath or the fully qualified classname of a precompiled extension. If there are * multiple extensions then extensions should be comma separated. */ public TypeCheckedCustomizerProvider(final String extensions) { this.extensions = extensions; } @Override public CompilationCustomizer create() { final Map<String, Object> annotationParams = new HashMap<>(); if (extensions != null && !extensions.isEmpty()) { if (extensions.contains(",")) annotationParams.put("extensions", Stream.of(extensions.split(",")).collect(Collectors.toList())); else annotationParams.put("extensions", Collections.singletonList(extensions)); } return new ASTTransformationCustomizer(annotationParams, TypeChecked.class); } }
39.855072
116
0.741091
a15acc07b92b893e1257feaa448745a8561f533e
269
package demo.smart.access.xutlis.listener; /** * Created by Xiangb on 2017/7/14. * 功能: */ public interface ZXUnZipRarListener { void onStart(); void onPregress(int progress); void onComplete(String outputPath); void onError(String message); }
14.157895
42
0.687732
818b03e7f01a5c69d611c48c6911fa9514f49633
876
package com.fr.swift.query.info.bean.element.aggregation.funnel; import com.fr.swift.base.json.annotation.JsonProperty; import java.util.List; /** * Created by lyon on 2018/12/28. */ public class AssociationFilterBean { @JsonProperty private String column; @JsonProperty private List<Integer> funnelIndexes; public AssociationFilterBean() { } public AssociationFilterBean(String column, List<Integer> funnelIndexes) { this.column = column; this.funnelIndexes = funnelIndexes; } public String getColumn() { return column; } public void setColumn(String column) { this.column = column; } public List<Integer> getFunnelIndexes() { return funnelIndexes; } public void setFunnelIndexes(List<Integer> funnelIndexes) { this.funnelIndexes = funnelIndexes; } }
21.365854
78
0.679224
fad4b785ba1641718c3d420a4f6f133b97fed841
962
package com.zf1976.server.controller; import com.zf1976.pojo.anno.AdminRestController; import com.zf1976.pojo.common.DataResult; import com.zf1976.service.interfaces.AdminService; import com.zf1976.pojo.dto.admin.AdminLoginDTO; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; /** * @author ant * Create by Ant on 2020/5/18 下午7:43 */ @RestController @AdminRestController @RequestMapping("/api/admin") @Api("SecurityController") @SuppressWarnings("rawtypes") public class SecurityController { @Autowired private AdminService adminService; @RequestMapping(value = "/login/status",method = RequestMethod.POST) @ApiOperation(value = "登陆接口") public DataResult doLogin(@RequestBody AdminLoginDTO adminLoginDTO) { return DataResult.success(adminService.checkLogin(adminLoginDTO)); } }
28.294118
74
0.780665
fb2d8b9b32a10fc96ef71da9e579c54976329b1d
388
package com.company.project.core; import tk.mybatis.mapper.common.BaseMapper; import tk.mybatis.mapper.common.ConditionMapper; import tk.mybatis.mapper.common.IdsMapper; import tk.mybatis.mapper.common.special.InsertListMapper; /** 定制版MyBatis Mapper插件接口,如需其他接口参考官方文档自行添加。 */ public interface Mapper<T> extends BaseMapper<T>, ConditionMapper<T>, IdsMapper<T>, InsertListMapper<T> {}
35.272727
83
0.804124
225eecd9f5d3f40608e374a171b9853c033c1ac2
398
package android.support.v4.app; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; class TaskStackBuilderHoneycomb { TaskStackBuilderHoneycomb() { } public static PendingIntent getActivitiesPendingIntent(Context context, int i, Intent[] intentArr, int i2) { return PendingIntent.getActivities(context, i, intentArr, i2); } }
26.533333
112
0.761307
02c90a716d7b22460a97eaf013912f572860d375
7,239
package com.phantomvk.qrcode.zxing; import android.graphics.Bitmap; import com.google.zxing.BarcodeFormat; import com.google.zxing.BinaryBitmap; import com.google.zxing.DecodeHintType; import com.google.zxing.MultiFormatReader; import com.google.zxing.NotFoundException; import com.google.zxing.RGBLuminanceSource; import com.google.zxing.Result; import com.google.zxing.common.GlobalHistogramBinarizer; import com.google.zxing.common.HybridBinarizer; import java.util.ArrayList; import java.util.EnumMap; import java.util.List; import java.util.Map; import static java.util.Collections.singletonList; public final class Decoder { private static final String UTF8 = "utf-8"; static final Map<DecodeHintType, Object> HINTS_MAP = new EnumMap<>(DecodeHintType.class); static { List<BarcodeFormat> formats = new ArrayList<>(17); formats.add(BarcodeFormat.AZTEC); formats.add(BarcodeFormat.CODABAR); formats.add(BarcodeFormat.CODE_39); formats.add(BarcodeFormat.CODE_93); formats.add(BarcodeFormat.CODE_128); formats.add(BarcodeFormat.DATA_MATRIX); formats.add(BarcodeFormat.EAN_8); formats.add(BarcodeFormat.EAN_13); formats.add(BarcodeFormat.ITF); formats.add(BarcodeFormat.MAXICODE); formats.add(BarcodeFormat.PDF_417); formats.add(BarcodeFormat.QR_CODE); formats.add(BarcodeFormat.RSS_14); formats.add(BarcodeFormat.RSS_EXPANDED); formats.add(BarcodeFormat.UPC_A); formats.add(BarcodeFormat.UPC_E); formats.add(BarcodeFormat.UPC_EAN_EXTENSION); HINTS_MAP.put(DecodeHintType.POSSIBLE_FORMATS, formats); HINTS_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); HINTS_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } static final Map<DecodeHintType, Object> ONE_DIMENSION_HINT_MAP = new EnumMap<>(DecodeHintType.class); static { List<BarcodeFormat> formats = new ArrayList<>(); formats.add(BarcodeFormat.CODABAR); formats.add(BarcodeFormat.CODE_39); formats.add(BarcodeFormat.CODE_93); formats.add(BarcodeFormat.CODE_128); formats.add(BarcodeFormat.EAN_8); formats.add(BarcodeFormat.EAN_13); formats.add(BarcodeFormat.ITF); formats.add(BarcodeFormat.PDF_417); formats.add(BarcodeFormat.RSS_14); formats.add(BarcodeFormat.RSS_EXPANDED); formats.add(BarcodeFormat.UPC_A); formats.add(BarcodeFormat.UPC_E); formats.add(BarcodeFormat.UPC_EAN_EXTENSION); ONE_DIMENSION_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, formats); ONE_DIMENSION_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); ONE_DIMENSION_HINT_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } static final Map<DecodeHintType, Object> TWO_DIMENSION_HINT_MAP = new EnumMap<>(DecodeHintType.class); static { List<BarcodeFormat> formats = new ArrayList<>(); formats.add(BarcodeFormat.AZTEC); formats.add(BarcodeFormat.DATA_MATRIX); formats.add(BarcodeFormat.MAXICODE); formats.add(BarcodeFormat.QR_CODE); TWO_DIMENSION_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, formats); TWO_DIMENSION_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); TWO_DIMENSION_HINT_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } static final Map<DecodeHintType, Object> QR_CODE_HINT_MAP = new EnumMap<>(DecodeHintType.class); static { QR_CODE_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, singletonList(BarcodeFormat.QR_CODE)); QR_CODE_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); QR_CODE_HINT_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } static final Map<DecodeHintType, Object> CODE_128_HINT_MAP = new EnumMap<>(DecodeHintType.class); static { CODE_128_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, singletonList(BarcodeFormat.CODE_128)); CODE_128_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); CODE_128_HINT_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } static final Map<DecodeHintType, Object> EAN_13_HINT_MAP = new EnumMap<>(DecodeHintType.class); static { EAN_13_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, singletonList(BarcodeFormat.EAN_13)); EAN_13_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); EAN_13_HINT_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } static final Map<DecodeHintType, Object> HIGH_FREQUENCY_HINT_MAP = new EnumMap<>(DecodeHintType.class); static { List<BarcodeFormat> formats = new ArrayList<>(); formats.add(BarcodeFormat.QR_CODE); formats.add(BarcodeFormat.UPC_A); formats.add(BarcodeFormat.EAN_13); formats.add(BarcodeFormat.CODE_128); HIGH_FREQUENCY_HINT_MAP.put(DecodeHintType.POSSIBLE_FORMATS, formats); HIGH_FREQUENCY_HINT_MAP.put(DecodeHintType.TRY_HARDER, Boolean.TRUE); HIGH_FREQUENCY_HINT_MAP.put(DecodeHintType.CHARACTER_SET, UTF8); } /** * Must not run on UiThread. * * @param bitmap Bitmap * @return decoded string */ public static String decode(final Bitmap bitmap) { RGBLuminanceSource source = null; try { int w = bitmap.getWidth(); int h = bitmap.getHeight(); int[] pixels = new int[w * h]; bitmap.getPixels(pixels, 0, w, 0, 0, w, h); source = new RGBLuminanceSource(w, h, pixels); HybridBinarizer binarizer = new HybridBinarizer(source); BinaryBitmap binaryBitmap = new BinaryBitmap(binarizer); Result result = new MultiFormatReader().decode(binaryBitmap, HINTS_MAP); return result.getText(); } catch (NotFoundException e) { e.printStackTrace(); } try { GlobalHistogramBinarizer binarizer = new GlobalHistogramBinarizer(source); BinaryBitmap binaryBitmap = new BinaryBitmap(binarizer); Result result = new MultiFormatReader().decode(binaryBitmap, HINTS_MAP); return result.getText(); } catch (NotFoundException e) { e.printStackTrace(); } return null; } private static int sWidth = -1; private static int sHeight = -1; private static int[] sIntArray = null; /** * Thread not safe and reuse IntArray. * * @param width width int * @param height height int * @return int[width * height] */ private static int[] getArrayInt(final int width, final int height) { if (width <= 0) throw new IllegalArgumentException("width must larger than 0."); if (height <= 0) throw new IllegalArgumentException("height must larger than 0."); if (width == sWidth && height == sHeight) return sIntArray; if (width == sHeight && height == sWidth) return sIntArray; sWidth = width; sHeight = height; sIntArray = new int[width * height]; return sIntArray; } /** * Release allocated int[]. */ private static void releaseArrayInt() { sWidth = -1; sHeight = -1; sIntArray = null; } }
36.560606
107
0.686283
160085be58b87ee4f79a4534ad161b3646343f18
1,560
package de.machmireinebook.epubeditor.epublib.domain; import org.apache.log4j.Logger; import de.machmireinebook.epubeditor.epublib.resource.Resource; import de.machmireinebook.epubeditor.epublib.resource.ResourceFactory; /** * User: mjungierek * Date: 01.09.2014 * Time: 22:40 */ public class DefaultResourceFactory<S> implements ResourceFactory<Resource<S>, S> { private static final Logger logger = Logger.getLogger(DefaultResourceFactory.class); private static final DefaultResourceFactory instance = new DefaultResourceFactory<>(); public static DefaultResourceFactory getInstance() { return instance; } @Override public Resource<S> createResource() { return new Resource<>(); } @Override public Resource<S> createResource(String href) { return new Resource<>(href); } @Override public Resource<S> createResource(byte[] data, String href) { return new Resource<>(data, href); } @Override public Resource<S> createResource(String id, byte[] data, String href) { Resource<S> res = new Resource<>(id, data, href, null); return res; } @Override public Resource<S> createResource(String id, byte[] data, String href, MediaType mediaType) { Resource<S> res = new Resource<>(id, data, href, mediaType); return res; } @Override public Resource<S> createResource(byte[] data, String href, MediaType mediaType) { return new Resource<>(data, href, mediaType); } }
25.16129
95
0.672436
1dbcefdde5c929f5ea3a135f2326bac4c930a1d5
14,392
/* * @(#)CreationTimePanel.java * * Goubaud Sylvain * Created : 2016 * Modified : 13 août 2016. * * This code may be freely used and modified on any personal or professional * project. It comes with no warranty. * */ package com.airportflightplanner.flightplancreation.panels; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.text.FieldPosition; import java.text.Format; import java.text.ParsePosition; import javax.swing.JLabel; import javax.swing.JTextField; import javax.swing.border.TitledBorder; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.joda.time.LocalTime; import org.joda.time.Period; import com.airportflightplanner.common.utils.time.TimeUtils; import com.airportflightplanner.flightplancreation.messages.FlightPlanCreationPanelMessages; import com.airportflightplanner.models.flightplans.api.bean.FlightPlanProperties; import com.airportflightplanner.models.flightplans.api.bean.FlightPlanReader; import com.jgoodies.binding.PresentationModel; import com.jgoodies.binding.adapter.BasicComponentFactory; import com.jgoodies.binding.value.BufferedValueModel; import com.jgoodies.binding.value.ConverterFactory; import com.jgoodies.binding.value.ValueModel; import com.jgoodies.forms.layout.ColumnSpec; import com.jgoodies.forms.layout.FormLayout; import com.jgoodies.forms.layout.FormSpecs; import com.jgoodies.forms.layout.RowSpec; import fr.gsyltc.framework.visualelements.AbstractCommonPanel; import fr.gsyltc.framework.visualelements.types.LayoutSpecs; /** * @author Goubaud Sylvain * */ public class CreationTimePanel extends AbstractCommonPanel { /** The logger of this class. */ protected static final Logger LOGGER = LogManager.getLogger(CreationTimePanel.class); /** * */ private static final long serialVersionUID = 8098225641658386495L; /** */ private static final int FP_PRESENTER = 0; /** */ private static final int TIME_TEXT_LENGHT = 5; /** */ private static final int BACKSPACE_CHAR = 8; /** */ protected transient JTextField endTextField; /** */ protected transient JTextField startTextField; /** */ protected transient JTextField timeTextField; /** * * @author Goubaud Sylvain * */ protected static class KeyTypingListener implements KeyListener { /** */ private final transient JTextField textField; /** * @param nTextField * */ public KeyTypingListener(final JTextField nTextField) { textField = nTextField; } /** * * {@inheritDoc} */ @Override public void keyPressed(final KeyEvent event) { // } /** * * {@inheritDoc} */ @Override public void keyReleased(final KeyEvent event) { String newText = textField.getText(); if (BACKSPACE_CHAR == event.getKeyCode() && 2 == newText.length()) { newText = newText.substring(0, 1); textField.setText(newText); } else { if (newText.length() == 2 && !newText.endsWith(":")) { final StringBuffer buff = new StringBuffer(newText); buff.append(':'); textField.setText(buff.toString()); } } if (TIME_TEXT_LENGHT == newText.length()) { if (LOGGER.isDebugEnabled()) { LOGGER.debug("Update Other Fextfield : Sender is " + textField); } textField.postActionEvent(); } } /** * * {@inheritDoc} */ @Override public void keyTyped(final KeyEvent event) { if (!TimeUtils.isMatch(textField.getText() + event.getKeyChar())) { event.consume(); } } } /** * * @author Goubaud Sylvain * */ private enum TextFieldsEnum { /** */ END, /** */ START, /** */ TIME } /** * @param newCcurrentFlightPlan * Flightplan. */ public CreationTimePanel(final PresentationModel<FlightPlanReader> newCcurrentFlightPlan) { super(newCcurrentFlightPlan); } /** * */ @Override public void build() { super.build(); setLayout(new FormLayout(new ColumnSpec[] { // FormSpecs.RELATED_GAP_COLSPEC, ColumnSpec.decode(LayoutSpecs.PREF_GROW), // FormSpecs.RELATED_GAP_COLSPEC, ColumnSpec.decode(LayoutSpecs.PREF_GROW), // FormSpecs.RELATED_GAP_COLSPEC, ColumnSpec.decode(LayoutSpecs.PREF_GROW), // FormSpecs.RELATED_GAP_COLSPEC, ColumnSpec.decode(LayoutSpecs.PREF_GROW), // FormSpecs.RELATED_GAP_COLSPEC, ColumnSpec.decode(LayoutSpecs.PREF_GROW), // FormSpecs.RELATED_GAP_COLSPEC, // ColumnSpec.decode(LayoutSpecs.PREF_GROW), // FormSpecs.RELATED_GAP_COLSPEC, }, // new RowSpec[] { FormSpecs.RELATED_GAP_ROWSPEC, // FormSpecs.PREF_ROWSPEC, // FormSpecs.RELATED_GAP_ROWSPEC, // FormSpecs.PREF_ROWSPEC, // FormSpecs.RELATED_GAP_ROWSPEC, // FormSpecs.PREF_ROWSPEC })); final PresentationModel<FlightPlanReader> presenter = (PresentationModel<FlightPlanReader>) getPresenter(FP_PRESENTER); final TitledBorder timePanelBorder = new TitledBorder(FlightPlanCreationPanelMessages.SCHEDULE_LABEL); setBorder(timePanelBorder); final JLabel startLabel = new JLabel(FlightPlanCreationPanelMessages.START_LABEL); add(startLabel, "2,2,3,1"); add(createStartTextField(presenter), "2,4,3,1"); final JLabel endLabel = new JLabel(FlightPlanCreationPanelMessages.END_LABEL); add(endLabel, "6,2,3,1"); add(createEndTextField(presenter), "6,4,3,1"); final JLabel timeLabel = new JLabel(FlightPlanCreationPanelMessages.TIME_LABEL); add(timeLabel, "10,2,3,1"); add(createTimeTextField(presenter), "10,4,3,1"); } /** * Create the end text field. * * @param presenter * the presenter. * @return the text field. */ private JTextField createEndTextField(final PresentationModel<FlightPlanReader> presenter) { final BufferedValueModel model = presenter.getBufferedModel(FlightPlanProperties.END_TIME); final ValueModel value = ConverterFactory.createStringConverter(model, new Format() { /** * */ private static final long serialVersionUID = 2946901254606932313L; /** * * * {@inheritDoc}. */ @Override public StringBuffer format(final Object obj, final StringBuffer toAppendTo, final FieldPosition pos) { final StringBuffer result = new StringBuffer(); if (obj instanceof LocalTime) { result.append(((LocalTime) obj).toString(TimeUtils.TIME_DISPLAYER)); if (LOGGER.isDebugEnabled()) { LOGGER.debug("Format end time : " + result); } } return result; } /** * * * {@inheritDoc}. */ @Override public Object parseObject(final String source, final ParsePosition pos) { final LocalTime result = TimeUtils.getLocalTime(source); if (LOGGER.isDebugEnabled()) { LOGGER.debug("Parse end time : " + result); } pos.setIndex(source.length() - 1); return result; } }); endTextField = BasicComponentFactory.createTextField(value); endTextField.addKeyListener(new KeyTypingListener(endTextField)); endTextField.addActionListener(new ActionListener() { /** * * * {@inheritDoc}. */ @Override public void actionPerformed(final ActionEvent event) { if (LOGGER.isDebugEnabled()) { LOGGER.debug("End text field - An action is performed"); } textFieldUpdater(TextFieldsEnum.END, presenter); } }); return endTextField; } /** * Create the start text field. * * @param presenter * the presenter. * * @return the text field. */ private JTextField createStartTextField(final PresentationModel<FlightPlanReader> presenter) { final BufferedValueModel model = presenter.getBufferedModel(FlightPlanProperties.START_TIME); final ValueModel value = ConverterFactory.createStringConverter(model, new Format() { /** * */ private static final long serialVersionUID = 8021308744564004518L; /** * * * {@inheritDoc}. */ @Override public StringBuffer format(final Object obj, final StringBuffer toAppendTo, final FieldPosition pos) { final StringBuffer result = new StringBuffer(); if (obj instanceof LocalTime) { result.append(((LocalTime) obj).toString(TimeUtils.TIME_DISPLAYER)); if (LOGGER.isDebugEnabled()) { LOGGER.debug("Format start time : " + result); } } return result; } /** * * * {@inheritDoc}. */ @Override public Object parseObject(final String source, final ParsePosition pos) { final LocalTime result = TimeUtils.getLocalTime(source); if (LOGGER.isDebugEnabled()) { LOGGER.debug("Parse start time : " + result); } pos.setIndex(source.length() - 1); return result; } }); startTextField = BasicComponentFactory.createTextField(value); startTextField.addKeyListener(new KeyTypingListener(startTextField)); startTextField.addActionListener(new ActionListener() { /** * * * {@inheritDoc}. */ @Override public void actionPerformed(final ActionEvent event) { if (LOGGER.isDebugEnabled()) { LOGGER.debug("Start text field - An action is performed"); } textFieldUpdater(TextFieldsEnum.START, presenter); } }); return startTextField; } /** * Create the time text field. * * @param presenter * the presenter. * * @return the text field. */ private JTextField createTimeTextField(final PresentationModel<FlightPlanReader> presenter) { final BufferedValueModel model = presenter.getBufferedModel(FlightPlanProperties.DURATION); final ValueModel value = ConverterFactory.createStringConverter(model, new Format() { /** * */ private static final long serialVersionUID = 8021308744564004518L; /** * * * {@inheritDoc}. */ @Override public StringBuffer format(final Object obj, final StringBuffer toAppendTo, final FieldPosition pos) { final StringBuffer result = new StringBuffer(); if (obj instanceof Period) { result.append(((Period) obj).toString(TimeUtils.PERIOD_DISPLAYER)); if (LOGGER.isDebugEnabled()) { LOGGER.debug("Format period time : " + result); } } return result; } /** * * * {@inheritDoc}. */ @Override public Object parseObject(final String source, final ParsePosition pos) { final Period result = TimeUtils.getPeriod(source); if (LOGGER.isDebugEnabled()) { LOGGER.debug("Parse period time : " + result); } pos.setIndex(source.length() - 1); return result; } }); timeTextField = BasicComponentFactory.createTextField(value); timeTextField.setEditable(false); return timeTextField; } /** * Update the correct text field start, end not empty & time empty=> update * time// if start ,time not empty & end empty=> update end // if end, time * not empty & start empty => update start// if all not empty => if start or * end updated => update time | if time updated => update end. * * @param sender * the sender id. * @param presenter * the presenter. */ protected void textFieldUpdater(final TextFieldsEnum sender, final PresentationModel<FlightPlanReader> presenter) { if (LOGGER.isDebugEnabled()) { LOGGER.debug("Update text fields - Sender is " + sender.name()); } switch (sender) { case START: presenter.setBufferedValue(FlightPlanProperties.END_TIME, // TimeUtils.getEndTime(startTextField.getText(), timeTextField.getText())); break; case END: presenter.setBufferedValue(FlightPlanProperties.START_TIME, // TimeUtils.getStartTime(endTextField.getText(), timeTextField.getText())); break; default: break; } } }
32.414414
127
0.562882
b0151b90a2981e66eb8fbbc87017690d2a05090f
11,793
package cn.leancloud.kafka.consumer; import org.apache.kafka.clients.consumer.Consumer; import org.apache.kafka.clients.consumer.ConsumerRecord; import org.apache.kafka.clients.consumer.ConsumerRecords; import org.apache.kafka.common.TopicPartition; import org.apache.kafka.common.errors.WakeupException; import org.apache.kafka.common.utils.Time; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.Closeable; import java.time.Duration; import java.util.HashMap; import java.util.Map; import java.util.Set; import java.util.concurrent.*; final class Fetcher<K, V> implements Runnable, Closeable { private static final Logger logger = LoggerFactory.getLogger(Fetcher.class); @VisibleForTesting static class TimeoutFuture<K, V> implements Future<ConsumerRecord<K, V>> { private final Future<ConsumerRecord<K, V>> wrappedFuture; private final long timeoutAtNanos; private final Time time; TimeoutFuture(Future<ConsumerRecord<K, V>> wrappedFuture, long timeoutInNanos) { this(wrappedFuture, timeoutInNanos, Time.SYSTEM); } TimeoutFuture(Future<ConsumerRecord<K, V>> wrappedFuture, long timeoutInNanos, Time time) { assert timeoutInNanos >= 0; this.wrappedFuture = wrappedFuture; long timeoutAtNanos = time.nanoseconds() + timeoutInNanos; if (timeoutAtNanos < 0) { timeoutAtNanos = Long.MAX_VALUE; } this.timeoutAtNanos = timeoutAtNanos; this.time = time; } @Override public boolean cancel(boolean mayInterruptIfRunning) { return wrappedFuture.cancel(mayInterruptIfRunning); } @Override public boolean isCancelled() { return wrappedFuture.isCancelled(); } @Override public boolean isDone() { return wrappedFuture.isDone(); } @Override public ConsumerRecord<K, V> get() throws InterruptedException, ExecutionException { return wrappedFuture.get(); } @Override public ConsumerRecord<K, V> get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { // if it is already timeout, throw exception immediately if (timeout()) { throw new TimeoutException(); } final long timeoutNanos = Math.max(0, Math.min(unit.toNanos(timeout), timeoutAtNanos - time.nanoseconds())); return wrappedFuture.get(timeoutNanos, TimeUnit.NANOSECONDS); } boolean timeout() { return time.nanoseconds() >= timeoutAtNanos; } } private final long pollTimeoutMillis; private final Consumer<K, V> consumer; private final ConsumerRecordHandler<K, V> handler; private final ExecutorCompletionService<ConsumerRecord<K, V>> service; private final Map<ConsumerRecord<K, V>, Future<ConsumerRecord<K, V>>> pendingFutures; private final CommitPolicy policy; private final long gracefulShutdownTimeoutNanos; private final CompletableFuture<UnsubscribedStatus> unsubscribeStatusFuture; private final long handleRecordTimeoutNanos; private final ProcessRecordsProgress progress; private volatile boolean closed; Fetcher(LcKafkaConsumerBuilder<K, V> consumerBuilder) { this(consumerBuilder.getConsumer(), consumerBuilder.getPollTimeout(), consumerBuilder.getConsumerRecordHandler(), consumerBuilder.getWorkerPool(), consumerBuilder.getPolicy(), consumerBuilder.getGracefulShutdownTimeout(), consumerBuilder.getHandleRecordTimeout(), new ProcessRecordsProgress()); } Fetcher(Consumer<K, V> consumer, Duration pollTimeout, ConsumerRecordHandler<K, V> handler, ExecutorService workerPool, CommitPolicy policy, Duration gracefulShutdownTimeout, Duration handleRecordTimeout, ProcessRecordsProgress progress) { this.progress = progress; this.pendingFutures = new HashMap<>(); this.consumer = consumer; this.pollTimeoutMillis = pollTimeout.toMillis(); this.handler = handler; this.service = new ExecutorCompletionService<>(workerPool); this.policy = policy; this.gracefulShutdownTimeoutNanos = gracefulShutdownTimeout.toNanos(); this.unsubscribeStatusFuture = new CompletableFuture<>(); this.handleRecordTimeoutNanos = handleRecordTimeout.toNanos(); } @Override public void run() { logger.debug("Fetcher thread started."); final long pollTimeoutMillis = this.pollTimeoutMillis; final Consumer<K, V> consumer = this.consumer; UnsubscribedStatus unsubscribedStatus = UnsubscribedStatus.CLOSED; while (true) { try { final ConsumerRecords<K, V> records = consumer.poll(pollTimeoutMillis); if (logger.isDebugEnabled()) { logger.debug("Fetched " + records.count() + " records from: " + records.partitions()); } dispatchFetchedRecords(records); processCompletedRecords(); processTimeoutRecords(); if (!pendingFutures.isEmpty() && !records.isEmpty()) { consumer.pause(records.partitions()); } tryCommitRecordOffsets(); } catch (WakeupException ex) { if (closed()) { break; } } catch (ExecutionException ex) { unsubscribedStatus = UnsubscribedStatus.ERROR; markClosed(); break; } catch (Throwable ex) { if (ex instanceof InterruptedException) { Thread.currentThread().interrupt(); } unsubscribedStatus = UnsubscribedStatus.ERROR; markClosed(); logger.error("Fetcher quit with unexpected exception.", ex); break; } } gracefulShutdown(unsubscribedStatus); logger.debug("Fetcher thread exit."); } @Override public void close() { markClosed(); consumer.wakeup(); } CompletableFuture<UnsubscribedStatus> unsubscribeStatusFuture() { return unsubscribeStatusFuture; } ProcessRecordsProgress progress() { return progress; } @VisibleForTesting Map<ConsumerRecord<K, V>, Future<ConsumerRecord<K, V>>> pendingFutures() { return pendingFutures; } private void markClosed() { closed = true; } private boolean closed() { return closed; } private void dispatchFetchedRecords(ConsumerRecords<K, V> records) { final ConsumerRecordHandler<K, V> handler = this.handler; for (ConsumerRecord<K, V> record : records) { final Future<ConsumerRecord<K, V>> future = service.submit(() -> { handler.handleRecord(record); return record; }); pendingFutures.put(record, timeoutAwareFuture(future)); progress.markPendingRecord(record); } } private Future<ConsumerRecord<K, V>> timeoutAwareFuture(Future<ConsumerRecord<K, V>> future) { if (unlimitedHandleRecordTime()) { return future; } else { return new TimeoutFuture<>(future, handleRecordTimeoutNanos); } } private void processCompletedRecords() throws InterruptedException, ExecutionException { Future<ConsumerRecord<K, V>> f; while ((f = service.poll()) != null) { processCompletedRecord(f); } } private void processCompletedRecord(Future<ConsumerRecord<K, V>> future) throws InterruptedException, ExecutionException { assert future.isDone(); final ConsumerRecord<K, V> record = future.get(); assert record != null; assert !future.isCancelled(); final Future<ConsumerRecord<K, V>> v = pendingFutures.remove(record); assert v != null; progress.markCompletedRecord(record); } private void processTimeoutRecords() throws TimeoutException { if (unlimitedHandleRecordTime()) { return; } for (Map.Entry<ConsumerRecord<K, V>, Future<ConsumerRecord<K, V>>> entry : pendingFutures.entrySet()) { // we can sure that this conversion must be success final TimeoutFuture<K, V> future = (TimeoutFuture<K, V>) entry.getValue(); if (future.timeout()) { future.cancel(false); // do not wait for it again on graceful shutdown pendingFutures.remove(entry.getKey(), entry.getValue()); throw new TimeoutException("timeout on handling record: " + entry.getKey()); } } } private void tryCommitRecordOffsets() { final Set<TopicPartition> partitions = policy.tryCommit(pendingFutures.isEmpty(), progress); if (!partitions.isEmpty()) { // `partitions` may have some revoked partitions so resume may throws IllegalStateException. // But rebalance is comparatively rare on production environment. So here we // try the optimised way first, if we got any IllegalStateException, we clean the revoked // partitions out of `partitions` and retry resume. try { consumer.resume(partitions); } catch (IllegalStateException ex) { partitions.retainAll(consumer.assignment()); consumer.resume(partitions); } } } private boolean unlimitedHandleRecordTime() { return handleRecordTimeoutNanos == 0; } private void gracefulShutdown(UnsubscribedStatus unsubscribedStatus) { long shutdownTimeout = 0L; try { shutdownTimeout = waitPendingFuturesDone(); policy.partialCommitSync(progress); pendingFutures.clear(); } catch (Exception ex) { logger.error("Graceful shutdown got unexpected exception", ex); } finally { try { consumer.close(shutdownTimeout, TimeUnit.NANOSECONDS); } finally { unsubscribeStatusFuture.complete(unsubscribedStatus); } } } private long waitPendingFuturesDone() { final long start = System.nanoTime(); long remain = gracefulShutdownTimeoutNanos; for (Map.Entry<ConsumerRecord<K, V>, Future<ConsumerRecord<K, V>>> entry : pendingFutures.entrySet()) { final Future<ConsumerRecord<K, V>> future = entry.getValue(); try { assert remain >= 0; final ConsumerRecord<K, V> record = future.get(remain, TimeUnit.MILLISECONDS); assert record != null; progress.markCompletedRecord(record); } catch (TimeoutException ex) { future.cancel(false); } catch (InterruptedException ex) { future.cancel(false); Thread.currentThread().interrupt(); } catch (CancellationException ex) { // ignore } catch (ExecutionException ex) { logger.error("Fetcher quit with unexpected exception on handling consumer record: " + entry.getKey(), ex.getCause()); } finally { if (remain >= 0) { remain = Math.max(0, gracefulShutdownTimeoutNanos - (System.nanoTime() - start)); } } } return remain; } }
37.798077
136
0.618757
8ecff72342ae3bf7533ca07dab46a1c0afe821ad
2,500
/* * MIT License * * Copyright (c) 2018 Isaac Ellingson (Falkreon) and contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.elytradev.marsenal.gui.widget; import com.elytradev.concrete.inventory.gui.client.GuiDrawing; import com.elytradev.concrete.inventory.gui.widget.WWidget; import net.minecraft.inventory.IInventory; public class WLabel extends WWidget { public static final int DEFAULT_TEXT_COLOR = 0x404040; protected String text; protected int color; protected IInventory inventory; protected int field1 = -1; protected int field2 = -1; public WLabel(String text, int color) { this.text = text; this.color = color; } public WLabel(String text) { this(text, DEFAULT_TEXT_COLOR); } public WLabel withFields(IInventory inv, int field1, int field2) { this.inventory = inv; this.field1 = field1; this.field2 = field2; return this; } @Override public void paintBackground(int x, int y) { int field1Contents = 0; int field2Contents = 0; if (inventory!=null) { if (field1>=0) { field1Contents = inventory.getField(field1); } if (field2>=0) { field2Contents = inventory.getField(field2); } } @SuppressWarnings("deprecation") String formatted = net.minecraft.util.text.translation.I18n.translateToLocalFormatted(text, field1Contents, field2Contents); GuiDrawing.drawString(formatted, x, y, color); } @Override public boolean canResize() { return false; } }
30.864198
126
0.7416
71dd8d3a11056876bf4277fa15d693c0e0efadd5
772
package io.github.biezhi.tgbot.request; import io.github.biezhi.tgbot.api.request.Keyboard; import io.github.biezhi.tgbot.response.SendResponse; /** * stas * 5/1/16. */ abstract public class AbstractSendRequest<T extends AbstractSendRequest> extends BotRequest<T, SendResponse> { public AbstractSendRequest(Object chatId) { super(SendResponse.class); add("chat_id", chatId); } public T disableNotification(boolean disableNotification) { return add("disable_notification", disableNotification); } public T replyToMessageId(int replyToMessageId) { return add("reply_to_message_id", replyToMessageId); } public T replyMarkup(Keyboard replyMarkup) { return add("reply_markup", replyMarkup); } }
26.62069
110
0.717617
6d3a5ec2424b2f45d0441ae493ced5d62eca72e5
1,737
package net.menthor.editor.v2.managers; import net.menthor.common.ontoumlfixer.Fix; import net.menthor.editor.v2.OclDocument; import net.menthor.editor.v2.commanders.UpdateCommander; import net.menthor.editor.v2.ui.antipattern.AntiPatternSearchDialog; import net.menthor.editor.v2.ui.controller.ProjectUIController; import net.menthor.editor.v2.ui.controller.TabbedAreaUIController; public class AntiPatternManager extends AbstractManager { // -------- Lazy Initialization private static class AntiPatternLoader { private static final AntiPatternManager INSTANCE = new AntiPatternManager(); } public static AntiPatternManager get() { return AntiPatternLoader.INSTANCE; } private AntiPatternManager() { if (AntiPatternLoader.INSTANCE != null) throw new IllegalStateException("AntiPatternManager already instantiated"); } // ---------------------------- public void detectAntiPatterns(){ AntiPatternSearchDialog.open(frame(), ProjectUIController.get().getProject().getRefParser()); } /** Transfer fixes made on the model to an application. * Users must override this method to get the modifications made by the antipatterns */ public void transferFix(Fix fix){ UpdateCommander.get().update(fix); //if there are rules, the update action opens a tab to show the ocl document to the user; if(fix.getAddedRules().size()>0){ OclDocument oclDoc = ProjectUIController.get().getProject().getOclDocList().get(0); if(TabbedAreaUIController.get().isOpen(oclDoc)) TabbedAreaUIController.get().select(oclDoc); else TabbedAreaUIController.get().add(oclDoc); TabbedAreaUIController.get().getSelectedTopOclEditor().reloadText(); } } }
34.74
123
0.736903
990252af84adb6a9fae508c70fc25715a16f061d
1,755
package com.example.server.domain; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import javax.persistence.*; import java.util.List; /** * Author xinliu * Date 6/28/17 * Time 2:39 PM */ public class RecognizeResponse { public static final String STATE_SUCCESS = "ok"; public static final String STATE_ERROR = "error"; public static final int CODE_NOT_SIGN_IN = 195; public static final int CODE_INTERNAL_ERROR = 196; public static final int CODE_INVALID_IMAGE = 197; public static final int CODE_CONNOT_RECOGNIZE = 198; public static final int CODE_RECOGNIZE_FAILED = 199; public static final int CODE_SUCCESS = 200; public static final String MSG_INVALID_IMAGE = "account not exists or not wrong password"; public static final String MSG_NOT_SIGN_IN = "account not exists or not wrong password"; @Expose @SerializedName("status") private String status; @Expose @SerializedName("code") private int code; @Expose @SerializedName("result") private List<String> result; public RecognizeResponse() { } public RecognizeResponse(String state, int code, List<String> result) { this.code = code; this.status = state; this.result = result; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public List<String> getResult() { return result; } public void setResult(List<String> result) { this.result = result; } }
23.716216
94
0.660969
abeb3e8beba3f77a93078a94995a87fced763ddd
162
package dev.patika.schoolmanagementsystem.business.validation.rules; public class CourseValidationRules { public static final int MAX_STUDENT_COUNT = 20; }
23.142857
68
0.814815
b511fa1fa58251610c44e0f3e88341ee054c2dfb
1,290
package org.nkjmlab.util.twitter.example; import java.io.File; import org.nkjmlab.util.h2.H2LocalDataSourceFactory; import org.nkjmlab.util.twitter.TweetRecorder; import org.nkjmlab.util.twitter.TwitterFactory; import twitter4j.Query; import twitter4j.Twitter; public class TweetsRecorderExample { private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger(); public static void main(String[] args) { Twitter twitter = TwitterFactory.create(); // String dbName = "baseball-" + DateTimeUtils.nowFormattedAsHyphenatedTimestamp(); String dbName = "baseball-2021-12-02"; H2LocalDataSourceFactory factory = H2LocalDataSourceFactory.builder(new File("~/h2db/tweet"), dbName, "", "").build(); factory.mkdirsForDatabase(); // http://localhost:8082/ にアクセスし,出力されるJDBC URLを入力するとWebUIでアクセス出来る.H2 Consoleを別途起動しておくこと. log.info("jdbc url is={}", factory.getMixedModeJdbcUrl()); String tweetTableName = "tweets"; String queryTableName = "queries"; Query query = new Query("日本シリーズ OR 日シリ"); new TweetRecorder(twitter, factory.createMixedModeDataSource(), tweetTableName, queryTableName) .fetchAndRecordBetween(query, Long.MAX_VALUE, 0); } }
33.947368
100
0.722481
7d097a409b7e2c337cfb06b3c7c3b3767563fab3
10,236
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */ package com.microsoft.azure.management.labservices.v2018_10_15; import com.microsoft.azure.arm.model.HasInner; import com.microsoft.azure.management.labservices.v2018_10_15.implementation.LabInner; import com.microsoft.azure.arm.model.Indexable; import com.microsoft.azure.arm.model.Refreshable; import com.microsoft.azure.arm.model.Updatable; import com.microsoft.azure.arm.model.Appliable; import com.microsoft.azure.arm.model.Creatable; import com.microsoft.azure.arm.resources.models.HasManager; import com.microsoft.azure.management.labservices.v2018_10_15.implementation.LabServicesManager; import java.util.Map; import org.joda.time.Period; import org.joda.time.DateTime; /** * Type representing Lab. */ public interface Lab extends HasInner<LabInner>, Indexable, Refreshable<Lab>, Updatable<Lab.Update>, HasManager<LabServicesManager> { /** * @return the createdByObjectId value. */ String createdByObjectId(); /** * @return the createdByUserPrincipalName value. */ String createdByUserPrincipalName(); /** * @return the createdDate value. */ DateTime createdDate(); /** * @return the id value. */ String id(); /** * @return the invitationCode value. */ String invitationCode(); /** * @return the latestOperationResult value. */ LatestOperationResult latestOperationResult(); /** * @return the location value. */ String location(); /** * @return the maxUsersInLab value. */ Integer maxUsersInLab(); /** * @return the name value. */ String name(); /** * @return the provisioningState value. */ String provisioningState(); /** * @return the tags value. */ Map<String, String> tags(); /** * @return the type value. */ String type(); /** * @return the uniqueIdentifier value. */ String uniqueIdentifier(); /** * @return the usageQuota value. */ Period usageQuota(); /** * @return the userAccessMode value. */ LabUserAccessMode userAccessMode(); /** * @return the userQuota value. */ Integer userQuota(); /** * The entirety of the Lab definition. */ interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLabaccount, DefinitionStages.WithCreate { } /** * Grouping of Lab definition stages. */ interface DefinitionStages { /** * The first stage of a Lab definition. */ interface Blank extends WithLabaccount { } /** * The stage of the lab definition allowing to specify Labaccount. */ interface WithLabaccount { /** * Specifies resourceGroupName, labAccountName. * @param resourceGroupName The name of the resource group * @param labAccountName The name of the lab Account * @return the next definition stage */ WithCreate withExistingLabaccount(String resourceGroupName, String labAccountName); } /** * The stage of the lab definition allowing to specify Location. */ interface WithLocation { /** * Specifies location. * @param location The location of the resource * @return the next definition stage */ WithCreate withLocation(String location); } /** * The stage of the lab definition allowing to specify MaxUsersInLab. */ interface WithMaxUsersInLab { /** * Specifies maxUsersInLab. * @param maxUsersInLab Maximum number of users allowed in the lab * @return the next definition stage */ WithCreate withMaxUsersInLab(Integer maxUsersInLab); } /** * The stage of the lab definition allowing to specify ProvisioningState. */ interface WithProvisioningState { /** * Specifies provisioningState. * @param provisioningState The provisioning status of the resource * @return the next definition stage */ WithCreate withProvisioningState(String provisioningState); } /** * The stage of the lab definition allowing to specify Tags. */ interface WithTags { /** * Specifies tags. * @param tags The tags of the resource * @return the next definition stage */ WithCreate withTags(Map<String, String> tags); } /** * The stage of the lab definition allowing to specify UniqueIdentifier. */ interface WithUniqueIdentifier { /** * Specifies uniqueIdentifier. * @param uniqueIdentifier The unique immutable identifier of a resource (Guid) * @return the next definition stage */ WithCreate withUniqueIdentifier(String uniqueIdentifier); } /** * The stage of the lab definition allowing to specify UsageQuota. */ interface WithUsageQuota { /** * Specifies usageQuota. * @param usageQuota Maximum duration a user can use an environment for in the lab * @return the next definition stage */ WithCreate withUsageQuota(Period usageQuota); } /** * The stage of the lab definition allowing to specify UserAccessMode. */ interface WithUserAccessMode { /** * Specifies userAccessMode. * @param userAccessMode Lab user access mode (open to all vs. restricted to those listed on the lab). Possible values include: 'Restricted', 'Open' * @return the next definition stage */ WithCreate withUserAccessMode(LabUserAccessMode userAccessMode); } /** * The stage of the definition which contains all the minimum required inputs for * the resource to be created (via {@link WithCreate#create()}), but also allows * for any other optional settings to be specified. */ interface WithCreate extends Creatable<Lab>, DefinitionStages.WithLocation, DefinitionStages.WithMaxUsersInLab, DefinitionStages.WithProvisioningState, DefinitionStages.WithTags, DefinitionStages.WithUniqueIdentifier, DefinitionStages.WithUsageQuota, DefinitionStages.WithUserAccessMode { } } /** * The template for a Lab update operation, containing all the settings that can be modified. */ interface Update extends Appliable<Lab>, UpdateStages.WithLocation, UpdateStages.WithMaxUsersInLab, UpdateStages.WithProvisioningState, UpdateStages.WithTags, UpdateStages.WithUniqueIdentifier, UpdateStages.WithUsageQuota, UpdateStages.WithUserAccessMode { } /** * Grouping of Lab update stages. */ interface UpdateStages { /** * The stage of the lab update allowing to specify Location. */ interface WithLocation { /** * Specifies location. * @param location The location of the resource * @return the next update stage */ Update withLocation(String location); } /** * The stage of the lab update allowing to specify MaxUsersInLab. */ interface WithMaxUsersInLab { /** * Specifies maxUsersInLab. * @param maxUsersInLab Maximum number of users allowed in the lab * @return the next update stage */ Update withMaxUsersInLab(Integer maxUsersInLab); } /** * The stage of the lab update allowing to specify ProvisioningState. */ interface WithProvisioningState { /** * Specifies provisioningState. * @param provisioningState The provisioning status of the resource * @return the next update stage */ Update withProvisioningState(String provisioningState); } /** * The stage of the lab update allowing to specify Tags. */ interface WithTags { /** * Specifies tags. * @param tags The tags of the resource * @return the next update stage */ Update withTags(Map<String, String> tags); } /** * The stage of the lab update allowing to specify UniqueIdentifier. */ interface WithUniqueIdentifier { /** * Specifies uniqueIdentifier. * @param uniqueIdentifier The unique immutable identifier of a resource (Guid) * @return the next update stage */ Update withUniqueIdentifier(String uniqueIdentifier); } /** * The stage of the lab update allowing to specify UsageQuota. */ interface WithUsageQuota { /** * Specifies usageQuota. * @param usageQuota Maximum duration a user can use an environment for in the lab * @return the next update stage */ Update withUsageQuota(Period usageQuota); } /** * The stage of the lab update allowing to specify UserAccessMode. */ interface WithUserAccessMode { /** * Specifies userAccessMode. * @param userAccessMode Lab user access mode (open to all vs. restricted to those listed on the lab). Possible values include: 'Restricted', 'Open' * @return the next update stage */ Update withUserAccessMode(LabUserAccessMode userAccessMode); } } }
31.495385
296
0.599551
b740b5d78bf429824a9c4caf2098f7435b149d9e
3,255
/* * Copyright (c) 2018. * BITS Dissertation Proof Concept. Not related to any organization. */ package edu.bits.mtech.acquirer; import edu.bits.mtech.acquirer.bo.AuthorizeRequest; import edu.bits.mtech.acquirer.bo.AuthorizeResponse; import org.springframework.http.ResponseEntity; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; import javax.validation.constraints.NotNull; import java.util.UUID; import java.util.logging.Logger; /** * Rest controller for Acquirer. This is just a service wihout any logic * and is out of scope of POC. * * @author Tushar Phadke */ @RestController public class AcquirerRestService { private static final Logger logger = Logger.getLogger(AcquirerRestService.class.getName()); /** * Authorize from acquirer. * * @param authorizeRequest authorize request * @return a status of authorization */ @RequestMapping(method = RequestMethod.POST, value = "/rest/authorize", consumes = "application/json", produces = "application/json") public ResponseEntity<AuthorizeResponse> authorize(@RequestBody @Valid @Validated @NotNull AuthorizeRequest authorizeRequest) { AuthorizeResponse authorizeResponse = new AuthorizeResponse(); authorizeResponse.setAuthorizeId(getUUID()); authorizeResponse.setAuthorizeAmount(authorizeRequest.getAuthorizeAmount()); logger.info("Acquirer Authorize Successful: " + authorizeResponse); return ResponseEntity.accepted().body(authorizeResponse); } private String getUUID() { String uuid = UUID.randomUUID().toString(); logger.info("Unique ID generated by system: " + uuid); return uuid; } /** * Update authorize from acquirer. * * @param authorizeRequest authorize request * @return a status of authorization */ @RequestMapping(method = RequestMethod.PUT, value = "/rest/authorize", consumes = "application/json", produces = "application/json") public ResponseEntity<AuthorizeResponse> authorizeUpdate(@RequestBody @Valid @Validated @NotNull AuthorizeRequest authorizeRequest) { AuthorizeResponse authorizeResponse = new AuthorizeResponse(); authorizeResponse.setAuthorizeId(authorizeRequest.getPaymentId()); authorizeResponse.setAuthorizeAmount(authorizeRequest.getAuthorizeAmount()); logger.info("Acquirer Authorize Successful: " + authorizeResponse); return ResponseEntity.accepted().body(authorizeResponse); } /** * Cancel authorize from acquirer. * * @param paymentId paymentId * @return a status of authorization */ @RequestMapping(method = RequestMethod.DELETE, value = "/rest/authorize/cancel/{paymentId}", consumes = "application/json", produces = "application/json") public ResponseEntity<AuthorizeResponse> cancelAuthorize(@PathVariable("paymentId") String paymentId) { AuthorizeResponse authorizeResponse = new AuthorizeResponse(); logger.info("Acquirer Authorize Successfully cancelled for paymentId " + paymentId); return ResponseEntity.ok().body(authorizeResponse); } }
35.769231
137
0.722273
8b6369ba8d1b75531d47f3a55131378ed30c2c21
1,009
package com.melike.backend.socialpress.dto; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonProperty; @JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY) public class YoutubeRelatedVideo { private final String kind; private final String etag; private final YoutubeRelatedId id; private final SnippetRelated snippet; public YoutubeRelatedVideo( @JsonProperty("kind") String kind, @JsonProperty("etag") String etag, @JsonProperty("id") YoutubeRelatedId id, @JsonProperty("snippet") SnippetRelated snippet) { this.kind = kind; this.etag = etag; this.id = id; this.snippet = snippet; } public String getKind() { return kind; } public String getEtag() { return etag; } public YoutubeRelatedId getId() { return id; } public SnippetRelated getSnippet() { return snippet; } }
24.609756
64
0.655104
9bfac6285104aa534ea2cf79e44f0010f9876a47
6,688
package com.gemvietnam.base; import com.gemvietnam.base.log.Logger; import com.gemvietnam.common.R; import com.gemvietnam.utils.ActivityUtils; import android.content.res.Resources; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.animation.AlphaAnimation; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import java.lang.reflect.Field; import butterknife.ButterKnife; /** * Base Fragment * Created by neo on 3/22/2016. */ public abstract class BaseFragment extends Fragment { private static final boolean DEFAULT_START_ON_ANIMATION_ENDED = false; protected View mRootView; // Animation enter/exit protected int mAnimIn = CoreDefault.ANIM_IN; protected int mAnimOut = CoreDefault.ANIM_OUT; /** * This field decide the Fragment will be started fetching data after Fragment transaction * animation ended * Otherwise, it start {@code onActivityCreated} */ protected boolean mStartOnAnimationEnded = DEFAULT_START_ON_ANIMATION_ENDED; @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { mRootView = inflater.inflate(getLayoutId(), container, false); // Inject views ButterKnife.bind(this, mRootView); return mRootView; } public void addChildFragment(Fragment fragment, int frameId, boolean addToBackStack, String tag) { ActivityUtils.addChildFragment(getChildFragmentManager(), fragment, frameId, addToBackStack, tag); } /** * Set out animation */ public BaseFragment setAnimOut(int animOut) { mAnimOut = animOut; return this; } /** * Set enter animation */ public BaseFragment setAnimIn(int animIn) { mAnimIn = animIn; return this; } /** * This method decide the Fragment will be started fetching data after Fragment transaction * animation ended * Otherwise, it start {@code onActivityCreated} */ protected BaseFragment setStartOnAnimationEnded(boolean startOnAnimationEnded) { mStartOnAnimationEnded = startOnAnimationEnded; return this; } /** * Return layout resource id for activity */ protected abstract int getLayoutId(); /** * Start present fragment */ protected abstract void startPresent(); // Arbitrary value; set it to some reasonable default // private static final int DEFAULT_CHILD_ANIMATION_DURATION = 250; // // @Override // public Animation onCreateAnimation(int transit, boolean enter, int nextAnim) { // final Fragment parent = getParentFragment(); // // // Apply the workaround only if this is a child fragment, and the parent // // is being removed. // if (!enter && parent != null && parent.isRemoving()) { // // This is a workaround for the bug where child fragments disappear when // // the parent is removed (as all children are first removed from the parent) // // See https://code.google.com/p/android/issues/detail?id=55228 // Animation doNothingAnim = new AlphaAnimation(1, 1); // doNothingAnim.setDuration(getNextAnimationDuration(parent, // DEFAULT_CHILD_ANIMATION_DURATION)); // return doNothingAnim; // } else { // return super.onCreateAnimation(transit, enter, nextAnim); // } // } // @Override // public Animation onCreateAnimation(int transit, boolean enter, int nextAnim) { // return enter ? AnimationUtils.loadAnimation(getActivity(), R.anim.slide_right_in) : // AnimationUtils.loadAnimation(getActivity(), R.anim.slide_right_out); // } private static long getNextAnimationDuration(Fragment fragment, long defValue) { try { // Attempt to get the resource ID of the next animation that // will be applied to the given fragment. Field nextAnimField = Fragment.class.getDeclaredField("mNextAnim"); nextAnimField.setAccessible(true); int nextAnimResource = nextAnimField.getInt(fragment); Animation nextAnim = AnimationUtils.loadAnimation(fragment.getActivity(), nextAnimResource); // ...and if it can be loaded, return that animation's duration return (nextAnim == null) ? defValue : nextAnim.getDuration(); } catch (NoSuchFieldException | IllegalAccessException | Resources.NotFoundException ex) { Logger.w("Unable to load next animation from parent." + ex.getMessage()); return defValue; } } @Override public Animation onCreateAnimation(int transit, boolean enter, int nextAnim) { Animation anim; if (enter) { anim = AnimationUtils.loadAnimation(getActivity(), mAnimIn); } else { anim = AnimationUtils.loadAnimation(getActivity(), mAnimOut); anim.setDuration(getContext().getResources().getInteger(R.integer.anim_duration)); } anim.setAnimationListener(new Animation.AnimationListener() { @Override public void onAnimationEnd(Animation animation) { if (mRootView != null) { mRootView.setLayerType(View.LAYER_TYPE_NONE, null); } if (mStartOnAnimationEnded) { startPresent(); } } @Override public void onAnimationRepeat(Animation animation) { } @Override public void onAnimationStart(Animation animation) { } }); // Apply the workaround only if this is a child fragment, and the parent // is being removed. final Fragment parent = getParentFragment(); if (!enter && parent != null && parent.isRemoving()) { // This is a workaround for the bug where child fragments disappear when // the parent is removed (as all children are first removed from the parent) // See https://code.google.com/p/android/issues/detail?id=55228 Animation doNothingAnim = new AlphaAnimation(1, 1); doNothingAnim.setDuration(getNextAnimationDuration(parent, getContext().getResources() .getInteger(R.integer.anim_duration))); return doNothingAnim; } return anim; } }
35.574468
104
0.650867
f51dc105e95f0e5b56d9e45e5bb8f1804e1498fd
1,306
package io.agrest.meta; import io.agrest.meta.compiler.AgEntityCompiler; import java.util.Collection; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; /** * An {@link AgDataMap} that lazily loads its entities. * * @since 1.24 */ public class LazyAgDataMap implements AgDataMap { private Collection<AgEntityCompiler> compilers; private ConcurrentMap<Class<?>, AgEntity<?>> entities; public LazyAgDataMap(Collection<AgEntityCompiler> compilers) { this.compilers = compilers; this.entities = new ConcurrentHashMap<>(); } @SuppressWarnings("unchecked") @Override public <T> AgEntity<T> getEntity(Class<T> type) { AgEntity<?> e = entities.get(type); // lazily create entities, improving startup time // and decreasing memory footprint. if (e == null) { AgEntity<?> newEntity = compile(type); AgEntity<?> existingEntity = entities.putIfAbsent(type, newEntity); e = existingEntity != null ? existingEntity : newEntity; } return (AgEntity<T>) e; } protected <T> AgEntity<T> compile(Class<T> type) { for (AgEntityCompiler compiler : compilers) { AgEntity<T> e = compiler.compile(type, this); if (e != null) { return e; } } throw new IllegalArgumentException("Unable to compile AgEntity: " + type); } }
24.185185
76
0.712864
91e81642fefca36a39067b34ef87d52a4a119f68
973
package com.blazebit.storage.server.bucket; import java.util.logging.Logger; import javax.enterprise.context.RequestScoped; import javax.inject.Inject; import javax.inject.Named; import com.blazebit.storage.rest.model.BucketHeadRepresentation; import com.blazebit.storage.server.account.AccountSupport; @Named @RequestScoped public class BucketDetailPage extends BucketBasePage { private static final long serialVersionUID = 1L; private static final Logger LOG = Logger.getLogger(BucketDetailPage.class.getName()); @Inject private AccountSupport accountSupport; private String accountName; @Override protected void init() { super.init(); if (bucket == null) { this.accountName = null; } else { this.accountName = accountSupport.getAccountName(bucket.getDefaultStorageOwner()); } } public BucketHeadRepresentation getBucket() { return (BucketHeadRepresentation) bucket; } public String getAccountName() { return accountName; } }
22.627907
86
0.778006
7a5eaa73c000dd8717344dffb1a7a9a5a9461f3c
49,679
package com.nosqldriver.jdbc.http.model; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.ResultSet; import java.sql.RowIdLifetime; import java.sql.SQLException; import java.util.Arrays; import java.util.stream.Collectors; import static java.lang.String.format; public class TransportableDatabaseMetaData extends WrapperProxy implements DatabaseMetaData { @JsonProperty private boolean allProceduresAreCallable; @JsonProperty private boolean allTablesAreSelectable; @JsonProperty private String url; @JsonProperty private String userName; @JsonProperty private boolean readOnly; @JsonProperty private boolean nullsAreSortedHigh; @JsonProperty private boolean nullsAreSortedLow; @JsonProperty private boolean nullsAreSortedAtStart; @JsonProperty private boolean nullsAreSortedAtEnd; @JsonProperty private String databaseProductName; @JsonProperty private String databaseProductVersion; @JsonProperty private String driverName; @JsonProperty private String driverVersion; @JsonProperty private int driverMajorVersion; @JsonProperty private int driverMinorVersion; @JsonProperty private boolean usesLocalFiles; @JsonProperty private boolean usesLocalFilePerTable; @JsonProperty private boolean supportsMixedCaseIdentifiers; @JsonProperty private boolean storesUpperCaseIdentifiers; @JsonProperty private boolean storesLowerCaseIdentifiers; @JsonProperty private boolean storesMixedCaseIdentifiers; @JsonProperty private boolean supportsMixedCaseQuotedIdentifiers; @JsonProperty private boolean storesUpperCaseQuotedIdentifiers; @JsonProperty private boolean storesLowerCaseQuotedIdentifiers; @JsonProperty private boolean storesMixedCaseQuotedIdentifiers; @JsonProperty private String identifierQuoteString; @JsonProperty("sqlKeywords") private String sqlKeywords; @JsonProperty private String numericFunctions; @JsonProperty private String stringFunctions; @JsonProperty private String systemFunctions; @JsonProperty private String timeDateFunctions; @JsonProperty private String searchStringEscape; @JsonProperty private String extraNameCharacters; @JsonProperty private boolean supportsAlterTableWithAddColumn; @JsonProperty private boolean supportsAlterTableWithDropColumn; @JsonProperty private boolean supportsColumnAliasing; @JsonProperty private boolean nullPlusNonNullIsNull; @JsonProperty private boolean supportsConvert; @JsonProperty private boolean supportsTableCorrelationNames; @JsonProperty private boolean supportsDifferentTableCorrelationNames; @JsonProperty private boolean supportsExpressionsInOrderBy; @JsonProperty private boolean supportsOrderByUnrelated; @JsonProperty private boolean supportsGroupBy; @JsonProperty private boolean supportsGroupByUnrelated; @JsonProperty private boolean supportsGroupByBeyondSelect; @JsonProperty private boolean supportsLikeEscapeClause; @JsonProperty private boolean supportsMultipleResultSets; @JsonProperty private boolean supportsMultipleTransactions; @JsonProperty private boolean supportsNonNullableColumns; @JsonProperty private boolean supportsMinimumSQLGrammar; @JsonProperty private boolean supportsCoreSQLGrammar; @JsonProperty private boolean supportsExtendedSQLGrammar; @JsonProperty private boolean supportsANSI92EntryLevelSQL; @JsonProperty private boolean supportsANSI92IntermediateSQL; @JsonProperty private boolean supportsANSI92FullSQL; @JsonProperty private boolean supportsIntegrityEnhancementFacility; @JsonProperty private boolean supportsOuterJoins; @JsonProperty private boolean supportsFullOuterJoins; @JsonProperty private boolean supportsLimitedOuterJoins; @JsonProperty private String schemaTerm; @JsonProperty private String procedureTerm; @JsonProperty private String catalogTerm; @JsonProperty private boolean catalogAtStart; @JsonProperty private String catalogSeparator; @JsonProperty private boolean supportsSchemasInDataManipulation; @JsonProperty private boolean supportsSchemasInProcedureCalls; @JsonProperty private boolean supportsSchemasInTableDefinitions; @JsonProperty private boolean supportsSchemasInIndexDefinitions; @JsonProperty private boolean supportsSchemasInPrivilegeDefinitions; @JsonProperty private boolean supportsCatalogsInDataManipulation; @JsonProperty private boolean supportsCatalogsInProcedureCalls; @JsonProperty private boolean supportsCatalogsInTableDefinitions; @JsonProperty private boolean supportsCatalogsInIndexDefinitions; @JsonProperty private boolean supportsCatalogsInPrivilegeDefinitions; @JsonProperty private boolean supportsPositionedDelete; @JsonProperty private boolean supportsPositionedUpdate; @JsonProperty private boolean supportsSelectForUpdate; @JsonProperty private boolean supportsStoredProcedures; @JsonProperty private boolean supportsSubqueriesInComparisons; @JsonProperty private boolean supportsSubqueriesInExists; @JsonProperty private boolean supportsSubqueriesInIns; @JsonProperty private boolean supportsSubqueriesInQuantifieds; @JsonProperty private boolean supportsCorrelatedSubqueries; @JsonProperty private boolean supportsUnion; @JsonProperty private boolean supportsUnionAll; @JsonProperty private boolean supportsOpenCursorsAcrossCommit; @JsonProperty private boolean supportsOpenCursorsAcrossRollback; @JsonProperty private boolean supportsOpenStatementsAcrossCommit; @JsonProperty private boolean supportsOpenStatementsAcrossRollback; @JsonProperty private int maxBinaryLiteralLength; @JsonProperty private int maxCharLiteralLength; @JsonProperty private int maxColumnNameLength; @JsonProperty private int maxColumnsInGroupBy; @JsonProperty private int maxColumnsInIndex; @JsonProperty private int maxColumnsInOrderBy; @JsonProperty private int maxColumnsInSelect; @JsonProperty private int maxColumnsInTable; @JsonProperty private int maxConnections; @JsonProperty private int maxCursorNameLength; @JsonProperty private int maxIndexLength; @JsonProperty private int maxSchemaNameLength; @JsonProperty private int maxProcedureNameLength; @JsonProperty private int maxCatalogNameLength; @JsonProperty private int maxRowSize; @JsonProperty private boolean doesMaxRowSizeIncludeBlobs; @JsonProperty private int maxStatementLength; @JsonProperty private int maxStatements; @JsonProperty private int maxTableNameLength; @JsonProperty private int maxTablesInSelect; @JsonProperty private int maxUserNameLength; @JsonProperty private int defaultTransactionIsolation; @JsonProperty private boolean supportsTransactions; @JsonProperty private boolean supportsDataDefinitionAndDataManipulationTransactions; @JsonProperty private boolean supportsDataManipulationTransactionsOnly; @JsonProperty private boolean dataDefinitionCausesTransactionCommit; @JsonProperty private boolean dataDefinitionIgnoredInTransactions; @JsonProperty private boolean supportsBatchUpdates; @JsonProperty private Connection connection; @JsonProperty private boolean supportsSavepoints; @JsonProperty private boolean supportsNamedParameters; @JsonProperty private boolean supportsMultipleOpenResults; @JsonProperty private boolean supportsGetGeneratedKeys; @JsonProperty private int resultSetHoldability; @JsonProperty private int databaseMajorVersion; @JsonProperty private int databaseMinorVersion; @JsonProperty("jdbcMajorVersion") private int jdbcMajorVersion; @JsonProperty("jdbcMinorVersion") private int jdbcMinorVersion; @JsonProperty("sqlStateType") private int sqlStateType; @JsonProperty private boolean locatorsUpdateCopy; @JsonProperty private boolean supportsStatementPooling; // @JsonProperty private RowIdLifetime rowIdLifetime; @JsonProperty private boolean supportsStoredFunctionsUsingCallSyntax; @JsonProperty private boolean autoCommitFailureClosesAllResultSets; @JsonProperty private boolean generatedKeyAlwaysReturned; @JsonProperty private long maxLogicalLobSize; @JsonProperty private boolean supportsRefCursors; @JsonProperty private boolean supportsSharding; @JsonCreator public TransportableDatabaseMetaData(@JsonProperty("entityUrl") String entityUrl) { super(entityUrl, DatabaseMetaData.class); } public TransportableDatabaseMetaData(String entityUrl, DatabaseMetaData md) throws SQLException { super(entityUrl, DatabaseMetaData.class); this.allProceduresAreCallable = md.allProceduresAreCallable(); this.allTablesAreSelectable = md.allTablesAreSelectable(); this.url = md.getURL(); this.userName = md.getUserName(); this.readOnly = md.isReadOnly(); this.nullsAreSortedHigh = md.nullsAreSortedHigh(); this.nullsAreSortedLow = md.nullsAreSortedLow(); this.nullsAreSortedAtStart = md.nullsAreSortedAtStart(); this.nullsAreSortedAtEnd = md.nullsAreSortedAtEnd(); this.databaseProductName = md.getDatabaseProductName(); this.databaseProductVersion = md.getDatabaseProductVersion(); this.driverName = md.getDriverName(); this.driverVersion = md.getDriverVersion(); this.driverMajorVersion = md.getDriverMajorVersion(); this.driverMinorVersion = md.getDriverMinorVersion(); this.usesLocalFiles = md.usesLocalFiles(); this.usesLocalFilePerTable = md.usesLocalFilePerTable(); this.supportsMixedCaseIdentifiers = md.supportsMixedCaseIdentifiers(); this.storesUpperCaseIdentifiers = md.storesUpperCaseIdentifiers(); this.storesLowerCaseIdentifiers = md.storesLowerCaseIdentifiers(); this.storesMixedCaseIdentifiers = md.storesMixedCaseIdentifiers(); this.supportsMixedCaseQuotedIdentifiers = md.supportsMixedCaseQuotedIdentifiers(); this.storesUpperCaseQuotedIdentifiers = md.storesUpperCaseQuotedIdentifiers(); this.storesLowerCaseQuotedIdentifiers = md.storesLowerCaseQuotedIdentifiers(); this.storesMixedCaseQuotedIdentifiers = md.storesMixedCaseQuotedIdentifiers(); this.identifierQuoteString = md.getIdentifierQuoteString(); this.sqlKeywords = md.getSQLKeywords(); this.numericFunctions = md.getNumericFunctions(); this.stringFunctions = md.getStringFunctions(); this.systemFunctions = md.getSystemFunctions(); this.timeDateFunctions = md.getTimeDateFunctions(); this.searchStringEscape = md.getSearchStringEscape(); this.extraNameCharacters = md.getExtraNameCharacters(); this.supportsAlterTableWithAddColumn = md.supportsAlterTableWithAddColumn(); this.supportsAlterTableWithDropColumn = md.supportsAlterTableWithDropColumn(); this.supportsColumnAliasing = md.supportsColumnAliasing(); this.nullPlusNonNullIsNull = md.nullPlusNonNullIsNull(); this.supportsConvert = md.supportsConvert(); this.supportsTableCorrelationNames = md.supportsTableCorrelationNames(); this.supportsDifferentTableCorrelationNames = md.supportsDifferentTableCorrelationNames(); this.supportsExpressionsInOrderBy = md.supportsExpressionsInOrderBy(); this.supportsOrderByUnrelated = md.supportsOrderByUnrelated(); this.supportsGroupBy = md.supportsGroupBy(); this.supportsGroupByUnrelated = md.supportsGroupByUnrelated(); this.supportsGroupByBeyondSelect = md.supportsGroupByBeyondSelect(); this.supportsLikeEscapeClause = md.supportsLikeEscapeClause(); this.supportsMultipleResultSets = md.supportsMultipleResultSets(); this.supportsMultipleTransactions = md.supportsMultipleTransactions(); this.supportsNonNullableColumns = md.supportsNonNullableColumns(); this.supportsMinimumSQLGrammar = md.supportsMinimumSQLGrammar(); this.supportsCoreSQLGrammar = md.supportsCoreSQLGrammar(); this.supportsExtendedSQLGrammar = md.supportsExtendedSQLGrammar(); this.supportsANSI92EntryLevelSQL = md.supportsANSI92EntryLevelSQL(); this.supportsANSI92IntermediateSQL = md.supportsANSI92IntermediateSQL(); this.supportsANSI92FullSQL = md.supportsANSI92FullSQL(); this.supportsIntegrityEnhancementFacility = md.supportsIntegrityEnhancementFacility(); this.supportsOuterJoins = md.supportsOuterJoins(); this.supportsFullOuterJoins = md.supportsFullOuterJoins(); this.supportsLimitedOuterJoins = md.supportsLimitedOuterJoins(); this.schemaTerm = md.getSchemaTerm(); this.procedureTerm = md.getProcedureTerm(); this.catalogTerm = md.getCatalogTerm(); this.catalogAtStart = md.isCatalogAtStart(); this.catalogSeparator = md.getCatalogSeparator(); this.supportsSchemasInDataManipulation = md.supportsSchemasInDataManipulation(); this.supportsSchemasInProcedureCalls = md.supportsSchemasInProcedureCalls(); this.supportsSchemasInTableDefinitions = md.supportsSchemasInTableDefinitions(); this.supportsSchemasInIndexDefinitions = md.supportsSchemasInIndexDefinitions(); this.supportsSchemasInPrivilegeDefinitions = md.supportsSchemasInPrivilegeDefinitions(); this.supportsCatalogsInDataManipulation = md.supportsCatalogsInDataManipulation(); this.supportsCatalogsInProcedureCalls = md.supportsCatalogsInProcedureCalls(); this.supportsCatalogsInTableDefinitions = md.supportsCatalogsInTableDefinitions(); this.supportsCatalogsInIndexDefinitions = md.supportsCatalogsInIndexDefinitions(); this.supportsCatalogsInPrivilegeDefinitions = md.supportsCatalogsInPrivilegeDefinitions(); this.supportsPositionedDelete = md.supportsPositionedDelete(); this.supportsPositionedUpdate = md.supportsPositionedUpdate(); this.supportsSelectForUpdate = md.supportsSelectForUpdate(); this.supportsStoredProcedures = md.supportsStoredProcedures(); this.supportsSubqueriesInComparisons = md.supportsSubqueriesInComparisons(); this.supportsSubqueriesInExists = md.supportsSubqueriesInExists(); this.supportsSubqueriesInIns = md.supportsSubqueriesInIns(); this.supportsSubqueriesInQuantifieds = md.supportsSubqueriesInQuantifieds(); this.supportsCorrelatedSubqueries = md.supportsCorrelatedSubqueries(); this.supportsUnion = md.supportsUnion(); this.supportsUnionAll = md.supportsUnionAll(); this.supportsOpenCursorsAcrossCommit = md.supportsOpenCursorsAcrossCommit(); this.supportsOpenCursorsAcrossRollback = md.supportsOpenCursorsAcrossRollback(); this.supportsOpenStatementsAcrossCommit = md.supportsOpenStatementsAcrossCommit(); this.supportsOpenStatementsAcrossRollback = md.supportsOpenStatementsAcrossRollback(); this.maxBinaryLiteralLength = md.getMaxBinaryLiteralLength(); this.maxCharLiteralLength = md.getMaxCharLiteralLength(); this.maxColumnNameLength = md.getMaxColumnNameLength(); this.maxColumnsInGroupBy = md.getMaxColumnsInGroupBy(); this.maxColumnsInIndex = md.getMaxColumnsInIndex(); this.maxColumnsInOrderBy = md.getMaxColumnsInOrderBy(); this.maxColumnsInSelect = md.getMaxColumnsInSelect(); this.maxColumnsInTable = md.getMaxColumnsInTable(); this.maxConnections = md.getMaxConnections(); this.maxCursorNameLength = md.getMaxCursorNameLength(); this.maxIndexLength = md.getMaxIndexLength(); this.maxSchemaNameLength = md.getMaxSchemaNameLength(); this.maxProcedureNameLength = md.getMaxProcedureNameLength(); this.maxCatalogNameLength = md.getMaxCatalogNameLength(); this.maxRowSize = md.getMaxRowSize(); this.doesMaxRowSizeIncludeBlobs = md.doesMaxRowSizeIncludeBlobs(); this.maxStatementLength = md.getMaxStatementLength(); this.maxStatements = md.getMaxStatements(); this.maxTableNameLength = md.getMaxTableNameLength(); this.maxTablesInSelect = md.getMaxTablesInSelect(); this.maxUserNameLength = md.getMaxUserNameLength(); this.defaultTransactionIsolation = md.getDefaultTransactionIsolation(); this.supportsTransactions = md.supportsTransactions(); this.supportsDataDefinitionAndDataManipulationTransactions = md.supportsDataDefinitionAndDataManipulationTransactions(); this.supportsDataManipulationTransactionsOnly = md.supportsDataManipulationTransactionsOnly(); this.dataDefinitionCausesTransactionCommit = md.dataDefinitionCausesTransactionCommit(); this.dataDefinitionIgnoredInTransactions = md.dataDefinitionIgnoredInTransactions(); this.supportsBatchUpdates = md.supportsBatchUpdates(); this.supportsSavepoints = md.supportsSavepoints(); this.supportsNamedParameters = md.supportsNamedParameters(); this.supportsMultipleOpenResults = md.supportsMultipleOpenResults(); this.supportsGetGeneratedKeys = md.supportsGetGeneratedKeys(); this.resultSetHoldability = md.getResultSetHoldability(); this.databaseMajorVersion = md.getDatabaseMajorVersion(); this.databaseMinorVersion = md.getDatabaseMinorVersion(); this.jdbcMajorVersion = md.getJDBCMajorVersion(); this.jdbcMinorVersion = md.getJDBCMinorVersion(); this.sqlStateType = md.getSQLStateType(); this.locatorsUpdateCopy = md.locatorsUpdateCopy(); this.supportsStatementPooling = md.supportsStatementPooling(); //this.rowIdLifetime = md.getRowIdLifetime(); this.supportsStoredFunctionsUsingCallSyntax = md.supportsStoredFunctionsUsingCallSyntax(); this.autoCommitFailureClosesAllResultSets = md.autoCommitFailureClosesAllResultSets(); this.generatedKeyAlwaysReturned = md.generatedKeyAlwaysReturned(); this.maxLogicalLobSize = md.getMaxLogicalLobSize(); this.supportsRefCursors = md.supportsRefCursors(); this.supportsSharding = md.supportsSharding(); } @Override public boolean allProceduresAreCallable() throws SQLException { return allProceduresAreCallable; } @Override public boolean allTablesAreSelectable() throws SQLException { return allTablesAreSelectable; } @Override public String getURL() throws SQLException { return url; } @Override public String getUserName() throws SQLException { return userName; } @Override public boolean isReadOnly() throws SQLException { return readOnly; } @Override public boolean nullsAreSortedHigh() throws SQLException { return nullsAreSortedHigh; } @Override public boolean nullsAreSortedLow() throws SQLException { return nullsAreSortedLow; } @Override public boolean nullsAreSortedAtStart() throws SQLException { return nullsAreSortedAtStart; } @Override public boolean nullsAreSortedAtEnd() throws SQLException { return nullsAreSortedAtEnd; } @Override public String getDatabaseProductName() throws SQLException { return databaseProductName; } @Override public String getDatabaseProductVersion() throws SQLException { return databaseProductVersion; } @Override public String getDriverName() throws SQLException { return driverName; } @Override public String getDriverVersion() throws SQLException { return driverVersion; } @Override public int getDriverMajorVersion() { return driverMajorVersion; } @Override public int getDriverMinorVersion() { return driverMinorVersion; } @Override public boolean usesLocalFiles() throws SQLException { return usesLocalFiles; } @Override public boolean usesLocalFilePerTable() throws SQLException { return usesLocalFilePerTable; } @Override public boolean supportsMixedCaseIdentifiers() throws SQLException { return supportsMixedCaseIdentifiers; } @Override public boolean storesUpperCaseIdentifiers() throws SQLException { return storesUpperCaseIdentifiers; } @Override public boolean storesLowerCaseIdentifiers() throws SQLException { return storesLowerCaseIdentifiers; } @Override public boolean storesMixedCaseIdentifiers() throws SQLException { return storesMixedCaseIdentifiers; } @Override public boolean supportsMixedCaseQuotedIdentifiers() throws SQLException { return supportsMixedCaseQuotedIdentifiers; } @Override public boolean storesUpperCaseQuotedIdentifiers() throws SQLException { return storesUpperCaseQuotedIdentifiers; } @Override public boolean storesLowerCaseQuotedIdentifiers() throws SQLException { return storesLowerCaseQuotedIdentifiers; } @Override public boolean storesMixedCaseQuotedIdentifiers() throws SQLException { return storesMixedCaseQuotedIdentifiers; } @Override public String getIdentifierQuoteString() throws SQLException { return identifierQuoteString; } @Override @JsonProperty("sqlKeywords") public String getSQLKeywords() throws SQLException { return sqlKeywords; } @Override public String getNumericFunctions() throws SQLException { return numericFunctions; } @Override public String getStringFunctions() throws SQLException { return stringFunctions; } @Override public String getSystemFunctions() throws SQLException { return systemFunctions; } @Override public String getTimeDateFunctions() throws SQLException { return timeDateFunctions; } @Override public String getSearchStringEscape() throws SQLException { return searchStringEscape; } @Override public String getExtraNameCharacters() throws SQLException { return extraNameCharacters; } @Override public boolean supportsAlterTableWithAddColumn() throws SQLException { return supportsAlterTableWithAddColumn; } @Override public boolean supportsAlterTableWithDropColumn() throws SQLException { return supportsAlterTableWithDropColumn; } @Override public boolean supportsColumnAliasing() throws SQLException { return supportsColumnAliasing; } @Override public boolean nullPlusNonNullIsNull() throws SQLException { return nullPlusNonNullIsNull; } @Override public boolean supportsConvert() throws SQLException { return supportsConvert; } @Override public boolean supportsConvert(int fromType, int toType) throws SQLException { return connector.get(format("%s/supports/convert/%d/%d", super.entityUrl, fromType, toType), Boolean.class); } @Override public boolean supportsTableCorrelationNames() throws SQLException { return supportsTableCorrelationNames; } @Override public boolean supportsDifferentTableCorrelationNames() throws SQLException { return supportsDifferentTableCorrelationNames; } @Override public boolean supportsExpressionsInOrderBy() throws SQLException { return supportsExpressionsInOrderBy; } @Override public boolean supportsOrderByUnrelated() throws SQLException { return supportsOrderByUnrelated; } @Override public boolean supportsGroupBy() throws SQLException { return supportsGroupBy; } @Override public boolean supportsGroupByUnrelated() throws SQLException { return supportsGroupByUnrelated; } @Override public boolean supportsGroupByBeyondSelect() throws SQLException { return supportsGroupByBeyondSelect; } @Override public boolean supportsLikeEscapeClause() throws SQLException { return supportsLikeEscapeClause; } @Override public boolean supportsMultipleResultSets() throws SQLException { return supportsMultipleResultSets; } @Override public boolean supportsMultipleTransactions() throws SQLException { return supportsMultipleTransactions; } @Override public boolean supportsNonNullableColumns() throws SQLException { return supportsNonNullableColumns; } @Override public boolean supportsMinimumSQLGrammar() throws SQLException { return supportsMinimumSQLGrammar; } @Override public boolean supportsCoreSQLGrammar() throws SQLException { return supportsCoreSQLGrammar; } @Override public boolean supportsExtendedSQLGrammar() throws SQLException { return supportsExtendedSQLGrammar; } @Override public boolean supportsANSI92EntryLevelSQL() throws SQLException { return supportsANSI92EntryLevelSQL; } @Override public boolean supportsANSI92IntermediateSQL() throws SQLException { return supportsANSI92IntermediateSQL; } @Override public boolean supportsANSI92FullSQL() throws SQLException { return supportsANSI92FullSQL; } @Override public boolean supportsIntegrityEnhancementFacility() throws SQLException { return supportsIntegrityEnhancementFacility; } @Override public boolean supportsOuterJoins() throws SQLException { return supportsOuterJoins; } @Override public boolean supportsFullOuterJoins() throws SQLException { return supportsFullOuterJoins; } @Override public boolean supportsLimitedOuterJoins() throws SQLException { return supportsLimitedOuterJoins; } @Override public String getSchemaTerm() throws SQLException { return schemaTerm; } @Override public String getProcedureTerm() throws SQLException { return procedureTerm; } @Override public String getCatalogTerm() throws SQLException { return catalogTerm; } @Override public boolean isCatalogAtStart() throws SQLException { return catalogAtStart; } @Override public String getCatalogSeparator() throws SQLException { return catalogSeparator; } @Override public boolean supportsSchemasInDataManipulation() throws SQLException { return supportsSchemasInDataManipulation; } @Override public boolean supportsSchemasInProcedureCalls() throws SQLException { return supportsSchemasInProcedureCalls; } @Override public boolean supportsSchemasInTableDefinitions() throws SQLException { return supportsSchemasInTableDefinitions; } @Override public boolean supportsSchemasInIndexDefinitions() throws SQLException { return supportsSchemasInIndexDefinitions; } @Override public boolean supportsSchemasInPrivilegeDefinitions() throws SQLException { return supportsSchemasInPrivilegeDefinitions; } @Override public boolean supportsCatalogsInDataManipulation() throws SQLException { return supportsCatalogsInDataManipulation; } @Override public boolean supportsCatalogsInProcedureCalls() throws SQLException { return supportsCatalogsInProcedureCalls; } @Override public boolean supportsCatalogsInTableDefinitions() throws SQLException { return supportsCatalogsInTableDefinitions; } @Override public boolean supportsCatalogsInIndexDefinitions() throws SQLException { return supportsCatalogsInIndexDefinitions; } @Override public boolean supportsCatalogsInPrivilegeDefinitions() throws SQLException { return supportsCatalogsInPrivilegeDefinitions; } @Override public boolean supportsPositionedDelete() throws SQLException { return supportsPositionedDelete; } @Override public boolean supportsPositionedUpdate() throws SQLException { return supportsPositionedUpdate; } @Override public boolean supportsSelectForUpdate() throws SQLException { return supportsSelectForUpdate; } @Override public boolean supportsStoredProcedures() throws SQLException { return supportsStoredProcedures; } @Override public boolean supportsSubqueriesInComparisons() throws SQLException { return supportsSubqueriesInComparisons; } @Override public boolean supportsSubqueriesInExists() throws SQLException { return supportsSubqueriesInExists; } @Override public boolean supportsSubqueriesInIns() throws SQLException { return supportsSubqueriesInIns; } @Override public boolean supportsSubqueriesInQuantifieds() throws SQLException { return supportsSubqueriesInQuantifieds; } @Override public boolean supportsCorrelatedSubqueries() throws SQLException { return supportsCorrelatedSubqueries; } @Override public boolean supportsUnion() throws SQLException { return supportsUnion; } @Override public boolean supportsUnionAll() throws SQLException { return supportsUnionAll; } @Override public boolean supportsOpenCursorsAcrossCommit() throws SQLException { return supportsOpenCursorsAcrossCommit; } @Override public boolean supportsOpenCursorsAcrossRollback() throws SQLException { return supportsOpenCursorsAcrossRollback; } @Override public boolean supportsOpenStatementsAcrossCommit() throws SQLException { return supportsOpenStatementsAcrossCommit; } @Override public boolean supportsOpenStatementsAcrossRollback() throws SQLException { return supportsOpenStatementsAcrossRollback; } @Override public int getMaxBinaryLiteralLength() throws SQLException { return maxBinaryLiteralLength; } @Override public int getMaxCharLiteralLength() throws SQLException { return maxCharLiteralLength; } @Override public int getMaxColumnNameLength() throws SQLException { return maxColumnNameLength; } @Override public int getMaxColumnsInGroupBy() throws SQLException { return maxColumnsInGroupBy; } @Override public int getMaxColumnsInIndex() throws SQLException { return maxColumnsInIndex; } @Override public int getMaxColumnsInOrderBy() throws SQLException { return maxColumnsInOrderBy; } @Override public int getMaxColumnsInSelect() throws SQLException { return maxColumnsInSelect; } @Override public int getMaxColumnsInTable() throws SQLException { return maxColumnsInTable; } @Override public int getMaxConnections() throws SQLException { return maxConnections; } @Override public int getMaxCursorNameLength() throws SQLException { return maxCursorNameLength; } @Override public int getMaxIndexLength() throws SQLException { return maxIndexLength; } @Override public int getMaxSchemaNameLength() throws SQLException { return maxSchemaNameLength; } @Override public int getMaxProcedureNameLength() throws SQLException { return maxProcedureNameLength; } @Override public int getMaxCatalogNameLength() throws SQLException { return maxCatalogNameLength; } @Override public int getMaxRowSize() throws SQLException { return maxRowSize; } @Override public boolean doesMaxRowSizeIncludeBlobs() throws SQLException { return doesMaxRowSizeIncludeBlobs; } @Override public int getMaxStatementLength() throws SQLException { return maxStatementLength; } @Override public int getMaxStatements() throws SQLException { return maxStatements; } @Override public int getMaxTableNameLength() throws SQLException { return maxTableNameLength; } @Override public int getMaxTablesInSelect() throws SQLException { return maxTablesInSelect; } @Override public int getMaxUserNameLength() throws SQLException { return maxUserNameLength; } @Override public int getDefaultTransactionIsolation() throws SQLException { return defaultTransactionIsolation; } @Override public boolean supportsTransactions() throws SQLException { return supportsTransactions; } @Override public boolean supportsTransactionIsolationLevel(int level) throws SQLException { return connector.get(format("%s/supports/transaction/isolation/level/%d", super.entityUrl, level), Boolean.class); } @Override public boolean supportsDataDefinitionAndDataManipulationTransactions() throws SQLException { return supportsDataDefinitionAndDataManipulationTransactions; } @Override public boolean supportsDataManipulationTransactionsOnly() throws SQLException { return supportsDataManipulationTransactionsOnly; } @Override public boolean dataDefinitionCausesTransactionCommit() throws SQLException { return dataDefinitionCausesTransactionCommit; } @Override public boolean dataDefinitionIgnoredInTransactions() throws SQLException { return dataDefinitionIgnoredInTransactions; } @Override public ResultSet getProcedures(String catalog, String schemaPattern, String procedureNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/procedures", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"procedure", procedureNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/procedure/columns", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"procedure", procedureNamePattern}, new String[] {"column", columnNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types) throws SQLException { String typesStr = types == null ? null : String.join(",", types); String fullUrl = connector.buildUrl(format("%s/tables", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"table", tableNamePattern}, new String[] {"types", typesStr}); return connector.get(fullUrl, ResultSetProxy.class); } @Override @JsonIgnore public ResultSet getSchemas() throws SQLException { return connector.get(format("%s/schemas", super.entityUrl), ResultSetProxy.class); } @Override @JsonIgnore public ResultSet getCatalogs() throws SQLException { return connector.get(format("%s/catalogs", super.entityUrl), ResultSetProxy.class); } @Override @JsonIgnore public ResultSet getTableTypes() throws SQLException { return connector.get(format("%s/table/types", super.entityUrl), ResultSetProxy.class); } @Override public ResultSet getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/columns", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"table", tableNamePattern}, new String[] {"column", columnNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/column/privileges", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}, new String[] {"column", columnNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/table/privileges", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"table", tableNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable) throws SQLException { String fullUrl = connector.buildUrl(format("%s/best/row/identifier", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}, new String[] {"scope", "" + scope}, new String[] {"nullable", "" + nullable}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getVersionColumns(String catalog, String schema, String table) throws SQLException { String fullUrl = connector.buildUrl(format("%s/version/columns", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getPrimaryKeys(String catalog, String schema, String table) throws SQLException { String fullUrl = connector.buildUrl(format("%s/primary/keys", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getImportedKeys(String catalog, String schema, String table) throws SQLException { String fullUrl = connector.buildUrl(format("%s/imported/keys", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getExportedKeys(String catalog, String schema, String table) throws SQLException { String fullUrl = connector.buildUrl(format("%s/exported/keys", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getCrossReference(String parentCatalog, String parentSchema, String parentTable, String foreignCatalog, String foreignSchema, String foreignTable) throws SQLException { String fullUrl = connector.buildUrl(format("%s/crossreference", super.entityUrl), new String[]{"parentCatalog", parentCatalog}, new String[]{"parentSchema", parentSchema}, new String[]{"parentTable", parentTable}, new String[]{"foreignCatalog", foreignCatalog}, new String[]{"foreignSchema", foreignSchema}, new String[]{"foreignTable", foreignTable} ); return connector.get(fullUrl, ResultSetProxy.class); } @Override @JsonIgnore public ResultSet getTypeInfo() throws SQLException { return connector.get(format("%s/type/info", super.entityUrl), ResultSetProxy.class); } @Override public ResultSet getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) throws SQLException { String fullUrl = connector.buildUrl(format("%s/index/info", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schema}, new String[] {"table", table}, new String[] {"unique", "" + unique}, new String[] {"approximate", "" + approximate}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public boolean supportsResultSetType(int type) throws SQLException { return connector.get(format("%s/supports/resultset/type/%d", super.entityUrl, type), Boolean.class); } @Override public boolean supportsResultSetConcurrency(int type, int concurrency) throws SQLException { return connector.get(format("%s/supports/resultset/concurrency/%d/%d", super.entityUrl, type, concurrency), Boolean.class); } @Override public boolean ownUpdatesAreVisible(int type) throws SQLException { return connector.get(format("%s/own/updates/visible/%d", super.entityUrl, type), Boolean.class); } @Override public boolean ownDeletesAreVisible(int type) throws SQLException { return connector.get(format("%s/own/deletes/visible/%d", super.entityUrl, type), Boolean.class); } @Override public boolean ownInsertsAreVisible(int type) throws SQLException { return connector.get(format("%s/own/inserts/visible/%d", super.entityUrl, type), Boolean.class); } @Override public boolean othersUpdatesAreVisible(int type) throws SQLException { return connector.get(format("%s/others/updates/visible/%d", super.entityUrl, type), Boolean.class); } @Override public boolean othersDeletesAreVisible(int type) throws SQLException { return connector.get(format("%s/others/deletes/visible/%d", super.entityUrl, type), Boolean.class); } @Override public boolean othersInsertsAreVisible(int type) throws SQLException { return connector.get(format("%s/others/inserts/visible/%d", super.entityUrl, type), Boolean.class); } @Override public boolean updatesAreDetected(int type) throws SQLException { return connector.get(format("%s/updates/detected/%d", super.entityUrl, type), Boolean.class); } @Override public boolean deletesAreDetected(int type) throws SQLException { return connector.get(format("%s/deletes/detected/%d", super.entityUrl, type), Boolean.class); } @Override public boolean insertsAreDetected(int type) throws SQLException { return connector.get(format("%s/inserts/detected/%d", super.entityUrl, type), Boolean.class); } @Override public boolean supportsBatchUpdates() throws SQLException { return supportsBatchUpdates; } @Override public ResultSet getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types) throws SQLException { String typesStr = types == null ? null : Arrays.stream(types).mapToObj(i -> ""+i).collect(Collectors.joining(",")); String fullUrl = connector.buildUrl(format("%s/udts", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"typename", typeNamePattern}, new String[] {"types", typesStr}); return connector.get(fullUrl, ResultSetProxy.class); } @Override @JsonIgnore public Connection getConnection() throws SQLException { return connection; } @Override public boolean supportsSavepoints() throws SQLException { return supportsSavepoints; } @Override public boolean supportsNamedParameters() throws SQLException { return supportsNamedParameters; } @Override public boolean supportsMultipleOpenResults() throws SQLException { return supportsMultipleOpenResults; } @Override public boolean supportsGetGeneratedKeys() throws SQLException { return supportsGetGeneratedKeys; } @Override public ResultSet getSuperTypes(String catalog, String schemaPattern, String typeNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/super/types", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"typename", typeNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getSuperTables(String catalog, String schemaPattern, String tableNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/super/tables", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"table", tableNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getAttributes(String catalog, String schemaPattern, String typeNamePattern, String attributeNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/attributes", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"typename", schemaPattern}, new String[] {"attribute", attributeNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public boolean supportsResultSetHoldability(int holdability) throws SQLException { return connector.get(format("%s/supports/resultset/holdability/%d", super.entityUrl, holdability), Boolean.class); } @Override public int getResultSetHoldability() throws SQLException { return resultSetHoldability; } @Override public int getDatabaseMajorVersion() throws SQLException { return databaseMajorVersion; } @Override public int getDatabaseMinorVersion() throws SQLException { return databaseMinorVersion; } @Override @JsonProperty("jdbcMajorVersion") public int getJDBCMajorVersion() throws SQLException { return jdbcMajorVersion; } @Override @JsonProperty("jdbcMinorVersion") public int getJDBCMinorVersion() throws SQLException { return jdbcMinorVersion; } @Override @JsonProperty("sqlStateType") public int getSQLStateType() throws SQLException { return sqlStateType; } @Override public boolean locatorsUpdateCopy() throws SQLException { return locatorsUpdateCopy; } @Override public boolean supportsStatementPooling() throws SQLException { return supportsStatementPooling; } @Override @JsonIgnore public RowIdLifetime getRowIdLifetime() throws SQLException { return connector.get(format("%s/rowidlifetime", super.entityUrl), RowIdLifetime.class); } @Override public ResultSet getSchemas(String catalog, String schemaPattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/schemas", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public boolean supportsStoredFunctionsUsingCallSyntax() throws SQLException { return supportsStoredFunctionsUsingCallSyntax; } @Override public boolean autoCommitFailureClosesAllResultSets() throws SQLException { return autoCommitFailureClosesAllResultSets; } @Override @JsonIgnore public ResultSet getClientInfoProperties() throws SQLException { return connector.get(format("%s/client/info/properties", super.entityUrl), ResultSetProxy.class); } @Override public ResultSet getFunctions(String catalog, String schemaPattern, String functionNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/functions", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"function", functionNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getFunctionColumns(String catalog, String schemaPattern, String functionNamePattern, String columnNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/function/columns", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"function", functionNamePattern}, new String[] {"column", columnNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public ResultSet getPseudoColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern) throws SQLException { String fullUrl = connector.buildUrl(format("%s/pseudo/columns", super.entityUrl), new String[] {"catalog", catalog}, new String[] {"schema", schemaPattern}, new String[] {"table", tableNamePattern}, new String[] {"column", columnNamePattern}); return connector.get(fullUrl, ResultSetProxy.class); } @Override public boolean generatedKeyAlwaysReturned() throws SQLException { return generatedKeyAlwaysReturned; } @Override public long getMaxLogicalLobSize() throws SQLException { return maxLogicalLobSize; } @Override public boolean supportsRefCursors() throws SQLException { return supportsRefCursors; } @Override public boolean supportsSharding() throws SQLException { return supportsSharding; } public TransportableDatabaseMetaData withConnection(Connection connection) { this.connection = connection; return this; } }
40.29116
272
0.740152
53eb21e24dcc6aa30ba50043a6d368cd30d8db19
3,204
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/bigtable/admin/v2/bigtable_instance_admin.proto package com.google.bigtable.admin.v2; public interface CreateAppProfileRequestOrBuilder extends // @@protoc_insertion_point(interface_extends:google.bigtable.admin.v2.CreateAppProfileRequest) com.google.protobuf.MessageOrBuilder { /** * <pre> * Required. The unique name of the instance in which to create the new app profile. * Values are of the form * `projects/{project}/instances/{instance}`. * </pre> * * <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }</code> * @return The parent. */ java.lang.String getParent(); /** * <pre> * Required. The unique name of the instance in which to create the new app profile. * Values are of the form * `projects/{project}/instances/{instance}`. * </pre> * * <code>string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }</code> * @return The bytes for parent. */ com.google.protobuf.ByteString getParentBytes(); /** * <pre> * Required. The ID to be used when referring to the new app profile within its * instance, e.g., just `myprofile` rather than * `projects/myproject/instances/myinstance/appProfiles/myprofile`. * </pre> * * <code>string app_profile_id = 2 [(.google.api.field_behavior) = REQUIRED];</code> * @return The appProfileId. */ java.lang.String getAppProfileId(); /** * <pre> * Required. The ID to be used when referring to the new app profile within its * instance, e.g., just `myprofile` rather than * `projects/myproject/instances/myinstance/appProfiles/myprofile`. * </pre> * * <code>string app_profile_id = 2 [(.google.api.field_behavior) = REQUIRED];</code> * @return The bytes for appProfileId. */ com.google.protobuf.ByteString getAppProfileIdBytes(); /** * <pre> * Required. The app profile to be created. * Fields marked `OutputOnly` will be ignored. * </pre> * * <code>.google.bigtable.admin.v2.AppProfile app_profile = 3 [(.google.api.field_behavior) = REQUIRED];</code> * @return Whether the appProfile field is set. */ boolean hasAppProfile(); /** * <pre> * Required. The app profile to be created. * Fields marked `OutputOnly` will be ignored. * </pre> * * <code>.google.bigtable.admin.v2.AppProfile app_profile = 3 [(.google.api.field_behavior) = REQUIRED];</code> * @return The appProfile. */ com.google.bigtable.admin.v2.AppProfile getAppProfile(); /** * <pre> * Required. The app profile to be created. * Fields marked `OutputOnly` will be ignored. * </pre> * * <code>.google.bigtable.admin.v2.AppProfile app_profile = 3 [(.google.api.field_behavior) = REQUIRED];</code> */ com.google.bigtable.admin.v2.AppProfileOrBuilder getAppProfileOrBuilder(); /** * <pre> * If true, ignore safety checks when creating the app profile. * </pre> * * <code>bool ignore_warnings = 4;</code> * @return The ignoreWarnings. */ boolean getIgnoreWarnings(); }
32.693878
120
0.668851
99a4603d161b62e691859cb49dfa33d2903540df
795
package cn.van.spring.copy.mapstruct.entity; import lombok.Data; import java.util.Date; /** * Copyright (C), 2015-2019, 风尘博客 * 公众号 : 风尘博客 * FileName: RoleDO * * @author: Van * Date: 2019-11-02 17:49 * Description: ${DESCRIPTION} * Version: V1.0 */ @Data public class UserInfoDO { private Long id; private String userName; private String password; private String phoneNum; private Date gmtBroth; private RoleDO role; public UserInfoDO() { } public UserInfoDO(RoleDO role,Long id,String userName,String password,String phoneNum,Date gmtBroth) { this.role = role; this.id = id; this.userName = userName; this.password = password; this.phoneNum = phoneNum; this.gmtBroth = gmtBroth; } }
18.068182
106
0.641509
efd65cf88cd03e6429ee649ffec95202587f40fd
617
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.upgrade.persistence.auxiliar; import com.upgrade.persistence.model.cmrlz.NotaPedidoCab; import com.upgrade.persistence.model.extcs.Almacen; import com.upgrade.persistence.model.extcs.Articulo; import java.util.Date; /** * * @author Admin */ public class DetallesSalidaArticuloModel { public NotaPedidoCab notaPedido; public Articulo articulo; public Almacen almacen; public Date fechaDescarga; }
25.708333
79
0.766613
dcf13ef3ca9d96d51b8e7e21c02016bba9f0a24e
4,465
package com.coinninja.coinkeeper.view.activity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import androidx.annotation.Nullable; import androidx.viewpager.widget.ViewPager; import com.coinninja.coinkeeper.R; import com.coinninja.coinkeeper.adapter.SeedWordsPagerAdapter; import com.coinninja.coinkeeper.cn.wallet.CNWalletManager; import com.coinninja.coinkeeper.presenter.activity.RecoveryWordsPresenter; import com.coinninja.coinkeeper.ui.base.BaseActivity; import com.coinninja.coinkeeper.util.DropbitIntents; import com.coinninja.coinkeeper.util.android.activity.ActivityNavigationUtil; import javax.inject.Inject; public class BackupActivity extends BaseActivity implements ViewPager.OnPageChangeListener, RecoveryWordsPresenter.View { @Inject ActivityNavigationUtil activityNavigationUtil; @Inject CNWalletManager cnWalletManager; @Inject RecoveryWordsPresenter presenter; @Inject SeedWordsPagerAdapter seedWordsPagerAdapter; private ViewPager seedWordsPager; private TextView wordPositionCount; private Button nextBTN; private Button backBTN; private String[] seedWords; private int currentPagePosition; private int viewState; @Override public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { } @Override public void onPageSelected(int position) { presenter.onPageChange(position); } @Override public void onPageScrollStateChanged(int state) { } @Override public int getPagePosition() { return currentPagePosition; } @Override public void setPagePosition(int pagePosition) { currentPagePosition = pagePosition; } @Override public void scrollToPage(int pagePosition) { seedWordsPager.setCurrentItem(pagePosition); } @Override public void setPageCounterText(String pageMsg) { wordPositionCount.setText(pageMsg); } @Override public void showNextActivity() { if (DropbitIntents.EXTRA_VIEW == viewState) { activityNavigationUtil.navigateToHome(this); } else { showVerifyScreen(); } } @Override public void hideFirst() { backBTN.setVisibility(View.GONE); } @Override public void showFirst() { backBTN.setVisibility(View.VISIBLE); } @Override public void showLast() { nextBTN.setBackgroundResource(R.drawable.cta_button); if (DropbitIntents.EXTRA_VIEW == viewState) { nextBTN.setText(R.string.finish); } else { nextBTN.setText(R.string.verify); } } @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); viewState = getIntent().getIntExtra(DropbitIntents.EXTRA_VIEW_STATE, DropbitIntents.EXTRA_CREATE); if (DropbitIntents.EXTRA_VIEW == viewState || DropbitIntents.EXTRA_BACKUP == viewState) { setTheme(R.style.CoinKeeperTheme_UpOff_CloseOn); } else { setTheme(R.style.CoinKeeperTheme_UpOn_SkipOn); } setContentView(R.layout.activity_backup); seedWords = getIntent().getStringArrayExtra(DropbitIntents.EXTRA_RECOVERY_WORDS); seedWordsPager = findViewById(R.id.seed_words_pager); nextBTN = findViewById(R.id.seed_word_next_btn); backBTN = findViewById(R.id.seed_word_back_btn); wordPositionCount = findViewById(R.id.seed_word_position_count); } @Override protected void onResume() { super.onResume(); seedWordsPagerAdapter.setSeedWords(seedWords); nextBTN.setOnClickListener(v -> presenter.onNextClicked()); backBTN.setOnClickListener(v -> presenter.onBackClicked()); presenter.attach(this); initSeedWordsPager(); } @Override public void showNext() { nextBTN.setBackgroundResource(R.drawable.primary_button); nextBTN.setText(R.string.next); } private void showVerifyScreen() { activityNavigationUtil.navigateToVerifyRecoveryWords(this, seedWords, viewState); } private void initSeedWordsPager() { seedWordsPager.setAdapter(seedWordsPagerAdapter); seedWordsPager.addOnPageChangeListener(this); seedWordsPager.setCurrentItem(0); presenter.onPageChange(0); } }
28.993506
121
0.709518
466524f24ba923989c90d3f5aeac191554d28dcd
514
package com.zavod.launch; public enum LaunchMode { NORMAL("normal"), RESET("reset"); private final String name; LaunchMode(String name) { this.name = name; } public static LaunchMode fromString(String name) { for (LaunchMode value : values()) { if (value.name.equals(name)) { return value; } } String message = "No " + LaunchMode.class.getSimpleName() + " " + "corresponds to value \"" + name + "\""; throw new IllegalArgumentException(message); } }
22.347826
67
0.620623
883f5289d262e6e4d2867efd4ab64c81dde7fefc
12,731
/* * RHQ Management Platform * Copyright (C) 2005-2010 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.enterprise.gui.coregui.client.dashboard.portlets.groups; import java.util.ArrayList; import java.util.List; import com.google.gwt.user.client.Timer; import com.google.gwt.user.client.rpc.AsyncCallback; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.HTMLFlow; import com.smartgwt.client.widgets.form.DynamicForm; import com.smartgwt.client.widgets.form.events.SubmitValuesEvent; import com.smartgwt.client.widgets.form.events.SubmitValuesHandler; import com.smartgwt.client.widgets.form.fields.LinkItem; import com.smartgwt.client.widgets.form.fields.SelectItem; import com.smartgwt.client.widgets.form.fields.StaticTextItem; import com.smartgwt.client.widgets.layout.VLayout; import org.rhq.core.domain.bundle.BundleDeployment; import org.rhq.core.domain.common.EntityContext; import org.rhq.core.domain.configuration.Configuration; import org.rhq.core.domain.configuration.PropertySimple; import org.rhq.core.domain.criteria.GroupBundleDeploymentCriteria; import org.rhq.core.domain.dashboard.DashboardPortlet; import org.rhq.core.domain.util.PageControl; import org.rhq.core.domain.util.PageList; import org.rhq.core.domain.util.PageOrdering; import org.rhq.enterprise.gui.coregui.client.LinkManager; import org.rhq.enterprise.gui.coregui.client.dashboard.AutoRefreshPortlet; import org.rhq.enterprise.gui.coregui.client.dashboard.AutoRefreshPortletUtil; import org.rhq.enterprise.gui.coregui.client.dashboard.CustomSettingsPortlet; import org.rhq.enterprise.gui.coregui.client.dashboard.Portlet; import org.rhq.enterprise.gui.coregui.client.dashboard.PortletViewFactory; import org.rhq.enterprise.gui.coregui.client.dashboard.PortletWindow; import org.rhq.enterprise.gui.coregui.client.dashboard.portlets.PortletConfigurationEditorComponent; import org.rhq.enterprise.gui.coregui.client.dashboard.portlets.PortletConfigurationEditorComponent.Constant; import org.rhq.enterprise.gui.coregui.client.gwt.GWTServiceLookup; import org.rhq.enterprise.gui.coregui.client.inventory.common.detail.summary.AbstractActivityView; import org.rhq.enterprise.gui.coregui.client.util.GwtRelativeDurationConverter; import org.rhq.enterprise.gui.coregui.client.util.Log; import org.rhq.enterprise.gui.coregui.client.util.selenium.LocatableCanvas; import org.rhq.enterprise.gui.coregui.client.util.selenium.LocatableDynamicForm; import org.rhq.enterprise.gui.coregui.client.util.selenium.LocatableVLayout; /**This portlet allows the end user to customize the Bundle Deployment display * * @author Simeon Pinder */ public class GroupBundleDeploymentsPortlet extends LocatableVLayout implements CustomSettingsPortlet, AutoRefreshPortlet { private int groupId = -1; protected LocatableCanvas recentBundleDeployContent = new LocatableCanvas( extendLocatorId("RecentBundleDeployments")); protected boolean currentlyLoading = false; // A non-displayed, persisted identifier for the portlet public static final String KEY = "GroupBundleDeployments"; // A default displayed, persisted name for the portlet public static final String NAME = MSG.view_portlet_defaultName_group_bundles(); protected static final String ID = "id"; // set on initial configuration, the window for this portlet view. protected PortletWindow portletWindow; //instance ui widgets protected Timer refreshTimer; protected static List<String> CONFIG_INCLUDE = new ArrayList<String>(); static { CONFIG_INCLUDE.add(Constant.RESULT_COUNT); } public GroupBundleDeploymentsPortlet(String locatorId, int groupId) { super(locatorId); this.groupId = groupId; } @Override protected void onInit() { initializeUi(); loadData(); } /**Defines layout for the portlet page. */ protected void initializeUi() { setPadding(5); setMembersMargin(5); addMember(recentBundleDeployContent); } /** Responsible for initialization and lazy configuration of the portlet values */ public void configure(PortletWindow portletWindow, DashboardPortlet storedPortlet) { //populate portlet configuration details if (null == this.portletWindow && null != portletWindow) { this.portletWindow = portletWindow; } if ((null == storedPortlet) || (null == storedPortlet.getConfiguration())) { return; } Configuration portletConfig = storedPortlet.getConfiguration(); //lazy init any elements not yet configured. for (String key : PortletConfigurationEditorComponent.CONFIG_PROPERTY_INITIALIZATION.keySet()) { if ((portletConfig.getSimple(key) == null) && CONFIG_INCLUDE.contains(key)) { portletConfig.put(new PropertySimple(key, PortletConfigurationEditorComponent.CONFIG_PROPERTY_INITIALIZATION.get(key))); } } } public Canvas getHelpCanvas() { return new HTMLFlow(MSG.view_portlet_help_bundle_deps()); } public static final class Factory implements PortletViewFactory { public static PortletViewFactory INSTANCE = new Factory(); public final Portlet getInstance(String locatorId, EntityContext context) { if (EntityContext.Type.ResourceGroup != context.getType()) { throw new IllegalArgumentException("Context [" + context + "] not supported by portlet"); } return new GroupBundleDeploymentsPortlet(locatorId, context.getGroupId()); } } protected void loadData() { currentlyLoading = true; getRecentBundleDeployments(); } @Override public DynamicForm getCustomSettingsForm() { final DashboardPortlet storedPortlet = this.portletWindow.getStoredPortlet(); final Configuration portletConfig = storedPortlet.getConfiguration(); LocatableDynamicForm customSettings = new LocatableDynamicForm(extendLocatorId("customSettings")); LocatableVLayout page = new LocatableVLayout(customSettings.extendLocatorId("page")); //build editor form container final LocatableDynamicForm form = new LocatableDynamicForm(page.extendLocatorId("bundle-deps")); form.setMargin(5); //add result count selector final SelectItem resultCountSelector = PortletConfigurationEditorComponent.getResultCountEditor(portletConfig); form.setItems(resultCountSelector); //submit handler customSettings.addSubmitValuesHandler(new SubmitValuesHandler() { @Override public void onSubmitValues(SubmitValuesEvent event) { //results count Configuration updatedConfig = AbstractActivityView.saveResultCounterSettings(resultCountSelector, portletConfig); //persist storedPortlet.setConfiguration(updatedConfig); configure(portletWindow, storedPortlet); refresh(); } }); page.addMember(form); customSettings.addChild(page); return customSettings; } /** Fetches recent bundle deployment information and updates the DynamicForm instance with details. */ protected void getRecentBundleDeployments() { final DashboardPortlet storedPortlet = this.portletWindow.getStoredPortlet(); final Configuration portletConfig = storedPortlet.getConfiguration(); final int groupId = this.groupId; GroupBundleDeploymentCriteria criteria = new GroupBundleDeploymentCriteria(); PageControl pc = new PageControl(); //result count String currentSetting = portletConfig.getSimpleValue(Constant.RESULT_COUNT, Constant.RESULT_COUNT_DEFAULT); if (currentSetting.trim().isEmpty()) { pc.setPageSize(Integer.valueOf(Constant.RESULT_COUNT_DEFAULT)); } else { pc.setPageSize(Integer.valueOf(currentSetting)); } criteria.setPageControl(pc); criteria.addFilterResourceGroupIds(groupId); criteria.addSortStatus(PageOrdering.DESC); criteria.fetchDestination(true); criteria.fetchBundleVersion(true); GWTServiceLookup.getBundleService().findBundleDeploymentsByCriteria(criteria, new AsyncCallback<PageList<BundleDeployment>>() { @Override public void onFailure(Throwable caught) { Log.debug("Error retrieving installed bundle deployments for group [" + groupId + "]:" + caught.getMessage()); currentlyLoading = false; } @Override public void onSuccess(PageList<BundleDeployment> result) { VLayout column = new VLayout(); column.setHeight(10); if (!result.isEmpty()) { for (BundleDeployment deployment : result) { LocatableDynamicForm row = new LocatableDynamicForm(recentBundleDeployContent .extendLocatorId(deployment.getBundleVersion().getName() + deployment.getBundleVersion().getVersion())); row.setNumCols(3); StaticTextItem iconItem = AbstractActivityView.newTextItemIcon( "subsystems/content/Content_16.png", null); String title = deployment.getBundleVersion().getName() + "[" + deployment.getBundleVersion().getVersion() + "]:"; String destination = LinkManager.getBundleDestinationLink(deployment.getBundleVersion() .getBundle().getId(), deployment.getDestination().getId()); LinkItem link = AbstractActivityView.newLinkItem(title, destination); StaticTextItem time = AbstractActivityView.newTextItem(GwtRelativeDurationConverter .format(deployment.getCtime())); row.setItems(iconItem, link, time); column.addMember(row); } //insert see more link //TODO: spinder:2/25/11 (add this later) no current view for seeing all bundle deployments // LocatableDynamicForm row = new LocatableDynamicForm(recentBundleDeployContent.extendLocatorId("RecentBundleContentSeeMore")); // addSeeMoreLink(row, LinkManager.getResourceGroupLink(groupId) + "/Events/History/", column); } else { LocatableDynamicForm row = AbstractActivityView.createEmptyDisplayRow(recentBundleDeployContent .extendLocatorId("None"), MSG.view_portlet_results_empty()); column.addMember(row); } //cleanup for (Canvas child : recentBundleDeployContent.getChildren()) { child.destroy(); } recentBundleDeployContent.addChild(column); recentBundleDeployContent.markForRedraw(); currentlyLoading = false; markForRedraw(); } }); } public void startRefreshCycle() { refreshTimer = AutoRefreshPortletUtil.startRefreshCycle(this, this, refreshTimer); } @Override protected void onDestroy() { AutoRefreshPortletUtil.onDestroy(this, refreshTimer); super.onDestroy(); } public boolean isRefreshing() { return this.currentlyLoading; } @Override public void refresh() { if (!isRefreshing()) { loadData(); } } }
43.450512
175
0.673003
6e19dc5fab3b26a0807420f21881ee6779fc6e32
528
package ch.hslu.SW08.Temperatur.v2; import ch.hslu.SW08.Temperatur.Temperatur; import java.util.EnumMap; import java.util.Map; public class Blei extends Element { private static final EnumMap<AggregatTemperatur, Temperatur> CHANGEPOINT = new EnumMap<>(AggregatTemperatur.class); static { CHANGEPOINT.put(AggregatTemperatur.BOILINGPOINT, new Temperatur(1744f)); CHANGEPOINT.put(AggregatTemperatur.FLUIDPOINT, new Temperatur(327f)); } public Blei() { super("Pb", CHANGEPOINT); } }
26.4
119
0.727273
00830ebce627bcf424db91ef3eae75af88c8c9f5
1,171
package test.eureka; import com.tollge.MainVerticle; import io.vertx.core.Vertx; import io.vertx.core.http.HttpClient; import io.vertx.core.http.HttpClientRequest; import io.vertx.ext.unit.Async; import io.vertx.ext.unit.TestOptions; import io.vertx.ext.unit.TestSuite; import io.vertx.ext.unit.report.ReportOptions; import org.junit.Test; import java.time.LocalDateTime; /** * @author toyer * @date 2018-10-23 */ public class Tester { private Vertx vertx; @Test public void run() { TestOptions options = new TestOptions().addReporter(new ReportOptions().setTo("console")); TestSuite suite = TestSuite.create("test - eurekaServer"); suite.before(ts -> { vertx = Vertx.vertx(); vertx.deployVerticle(new MainVerticle(), ts.asyncAssertSuccess()); }); suite.after(ts -> { System.out.println("server close:"+ LocalDateTime.now()); vertx.close(ts.asyncAssertSuccess()); }); suite.test("eurekaServer", context -> { Async async = context.async(); //async.complete(); }); suite.run(options).await(100000); } }
26.613636
98
0.640478
10f4df5a7ad46213ba6a9d8e9c76caed2061efbd
404
package codingbat.recursion1; /** * http://codingbat.com/prob/p135988 */ public final class Array11 { public int array11(int[] nums, int index) { if (nums.length == 0 || nums.length == index) { return 0; } if (nums[index] == 11) { return array11(nums, index + 1) + 1; } else { return array11(nums, index + 1); } } }
21.263158
55
0.509901
1d2b6b4fa6def36856f3c0f0616228feb39b11b5
214
package com.raysonxin.concert; import org.springframework.stereotype.Service; public class DancePerformance implements Performance { public void perform() { System.out.println("dancing...."); } }
21.4
54
0.724299
53bde440727bafda3b8a74b6aa2f685980efec27
2,078
package com.enigma.model; import com.enigma.Rotors; import org.jetbrains.annotations.NotNull; import java.util.Arrays; import java.util.List; public class Rotor extends LetterMapping{ private int numericPosition = 1; public Rotor(Rotors rotorName){ List<String> initialMap = getConstantMapping(rotorName); int counter = 0; for (char ch = 'A'; ch <= 'Z'; ch++){ mapping.forcePut(ch, initialMap.get(counter).charAt(0)); counter += 1; } } public int getNumericPosition() { return numericPosition; } public void Rotate(){ char chAtA = mapping.get('A'); for (char ch = 'B'; ch <= 'Z'; ch++){ char trailingChar = (char) (ch-1); mapping.forcePut(trailingChar, mapping.get(ch)); } // A gets B, B gets C...Y gets Z mapping.forcePut('Z',chAtA); if (numericPosition == 26) { numericPosition = 1; } else { numericPosition += 1; } } /** * @param input the character input into the component * @return the character that's mapped to the input */ @Override public String getOutput(@NotNull String input) { if (input.charAt(0) < 'A' || input.charAt(0) > 'Z') { return input; } return String.valueOf(mapping.get(input.charAt(0))); } public String getInverseOutput(String input) { if (input.charAt(0) < 'A' || input.charAt(0) > 'Z') { return input; } return String.valueOf(mapping.inverse().get(input.charAt(0))); } private @NotNull List<String> getConstantMapping(@NotNull Rotors rotorName) { return switch (rotorName) { case RotorA -> Arrays.asList("VEOSIRZUJDQCKGWYPNXAFLTHMB".split("")); case RotorB -> Arrays.asList("UEMOATQLSHPKCYFWJZBGVXINDR".split("")); case RotorC -> Arrays.asList("DMTWSILRUYQNKFEJCAZBPGXOHV".split("")); default -> Arrays.asList("ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("")); }; } }
31.014925
81
0.583734
b4466c9ad91e85882e11e3b78c87ca71a56aa91a
1,116
package edu.tec.ic6821.blog.users.integration.jsonplaceholder; import edu.tec.ic6821.blog.users.integration.ExternalUserService; import edu.tec.ic6821.blog.users.model.User; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import java.util.List; import static org.assertj.core.api.Assertions.assertThat; @SpringBootTest public class JsonPlaceholderExternalUserServiceIntegrationTest { @Autowired private ExternalUserService externalUserService; @Test public void pullUsersFromJsonPlaceholder() { // given // when final List<User> actual = externalUserService.pull(); // then assertThat(actual).isNotEmpty(); actual.forEach(user -> { assertThat(user.getIntegrationId()).isNotNull(); assertThat(user.getUsername()).isNotBlank(); assertThat(user.getName()).isNotBlank(); assertThat(user.getEmail()).isNotBlank(); assertThat(user.getZipCode()).isNotBlank(); }); } }
30.162162
65
0.706989
67f7760d6ed3cd5ebc42cde8ca678892a7f158e5
4,668
package com.github.tangyi.core.common.web.util; import com.github.tangyi.core.common.util.*; import javax.servlet.ServletRequest; import javax.servlet.http.HttpServletRequest; import java.io.BufferedReader; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.Collection; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; /** * 请求工具 * * @author hedongzhou * @since 2018/07/24 */ public class RequestUtils { /** * 获取流字符串 * * @param request * @return */ public static String getString(ServletRequest request) { try (BufferedReader reader = request.getReader()) { return IOUtils.toString(reader); } catch (Exception e) { LogUtils.error(e); return null; } } /** * 获取请求参数 * * @param request * @return */ public static Map<String, String> getParameters(ServletRequest request) { Map<String, String[]> parameters = request.getParameterMap(); Map<String, String> result = new HashMap<>(parameters.size()); for (Map.Entry<String, String[]> entry : parameters.entrySet()) { result.put(entry.getKey(), StringUtils.join(entry.getValue())); } return result; } /** * @Author xh * @Description 输出json字符串 * @Date 16:22 2019/9/20 * @Param [request] * @return java.lang.String **/ public static String getParameters2(ServletRequest request) { Map<String, String[]> parameters = request.getParameterMap(); String result = JsonUtils.toString(parameters); return result; } /** * 获取IP * * @param request * @return */ public static String getIp(HttpServletRequest request) { String ip = request.getHeader("X-Real-IP"); if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("Proxy-Client-IP"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("WL-Proxy-Client-IP"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getRemoteAddr(); if (ip.equals("127.0.0.1")) { InetAddress inet = null; try { inet = InetAddress.getLocalHost(); } catch (UnknownHostException e) { LogUtils.error(e.getMessage(), e); } ip = inet.getHostAddress(); } } return ip.indexOf(",") > -1 ? ip.substring(0, ip.indexOf(",")) : ip; } /** * 获取头部信息 * * @param request * @return */ public static Map<String, String> getHeaders(HttpServletRequest request) { return getHeaders(request, null); } /** * 获取头部信息 * * @param request * @param includes * @return */ public static Map<String, String> getHeaders(HttpServletRequest request, Collection<String> includes) { Map<String, String> map = new HashMap<>(5); Enumeration<String> headerNames = request.getHeaderNames(); while (headerNames.hasMoreElements()) { String key = headerNames.nextElement(); if (CheckUtils.isEmpty(includes) || includes.contains(key)) { map.put(key, request.getHeader(key)); } } return map; } /** * 获取完整的请求地址 * @param req * @return */ public static String getFullURL(HttpServletRequest req) { String scheme = req.getScheme(); // http String serverName = req.getServerName(); // hostname.com int serverPort = req.getServerPort(); // 80 String contextPath = req.getContextPath(); // /mywebapp String servletPath = req.getServletPath(); // /servlet/MyServlet String pathInfo = req.getPathInfo(); // /a/b;c=123 String queryString = req.getQueryString(); // d=789 // Reconstruct original requesting URL StringBuilder url = new StringBuilder(); url.append(scheme).append("://").append(serverName); if (serverPort != 80 && serverPort != 443) { url.append(":").append(serverPort); } url.append(contextPath).append(servletPath); // if (pathInfo != null) { // url.append(pathInfo); // } // if (queryString != null) { // url.append("?").append(queryString); // } return url.toString(); } }
28.290909
79
0.565338
e9dc771e21681e7774c2b8dc1efe9a79bd431b14
7,588
package com.magazyn.API; import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.util.Arrays; import java.util.Base64; import java.util.HashMap; import java.util.Optional; import com.magazyn.API.exceptions.IllegalRequestException; import com.magazyn.API.exceptions.NoEndPointException; import com.magazyn.API.exceptions.NoResourceFoundException; import com.magazyn.database.Type; import com.magazyn.database.repositories.TypeRepository; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.ArgumentCaptor; import org.mockito.Captor; import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.Mockito; import org.mockito.junit.jupiter.MockitoExtension; import org.springframework.test.context.ActiveProfiles; @ActiveProfiles("test") @ExtendWith(MockitoExtension.class) public class TypeApiTest { @InjectMocks private TypeApi type_api = new TypeApi(); @Mock private TypeRepository type_repository; @Captor private ArgumentCaptor<Type> captor; @Test public void getAllTest() throws JSONException { when(type_repository.findAll()).thenReturn( Arrays.asList(new Type[] {}) ); JSONObject response = new JSONObject(type_api.getAllTypes()); JSONArray array = response.getJSONArray("types"); assertEquals(array.length(), 0); Type[] types = new Type[2]; types[0] = new Type("t1"); types[1] = new Type("t2"); when(type_repository.findAll()).thenReturn( Arrays.asList(types) ); response = new JSONObject(type_api.getAllTypes()); array = response.getJSONArray("types"); assertEquals(array.length(), 2); JSONObject type_data = array.getJSONObject(0); assertTrue(type_data.getString("name").equals("t1") || type_data.getString("name").equals("t2")); type_data = array.getJSONObject(1); assertTrue(type_data.getString("name").equals("t1") || type_data.getString("name").equals("t2")); } @Test public void getByIDTest() throws JSONException { when(type_repository.findById(0)).thenReturn( Optional.of(new Type("t1")) ); when(type_repository.findById(1)).thenReturn( Optional.empty() ); when(type_repository.findById(2)).thenReturn( Optional.of(new Type("t2")) ); JSONObject response = new JSONObject(type_api.getTypeById(0)); assertTrue(response.getString("name").equals("t1")); assertThrows(NoResourceFoundException.class, () -> { type_api.getTypeById(1); }); response = new JSONObject(type_api.getTypeById(2)); assertTrue(response.getString("name").equals("t2")); } @Test public void getByNameTest() throws JSONException { when(type_repository.findByName("t1")).thenReturn( Arrays.asList(new Type[] {}) ); Type[] types = new Type[2]; types[0] = new Type("t2"); types[0].setId(1); types[1] = new Type("t2"); types[0].setId(12); when(type_repository.findByName("t2")).thenReturn( Arrays.asList(types) ); String t1 = Base64.getUrlEncoder().encodeToString("t1".getBytes()); String t2 = Base64.getUrlEncoder().encodeToString("t2".getBytes()); JSONObject response = new JSONObject(type_api.getTypesByName(t1)); assertEquals(response.getJSONArray("types").length(), 0); response = new JSONObject(type_api.getTypesByName(t2)); assertEquals(response.getJSONArray("types").length(), 2); assertTrue(response.getJSONArray("types").getJSONObject(0).getInt("ID") == 1 || response.getJSONArray("types").getJSONObject(0).getInt("ID") == 12); assertTrue(response.getJSONArray("types").getJSONObject(0).getInt("ID") == 1 || response.getJSONArray("types").getJSONObject(0).getInt("ID") == 12); } @Test public void createTest() throws JSONException { HashMap<String, String> param = new HashMap<>(); param.put("name", "t1"); type_api.addType(param); verify(type_repository).save(captor.capture()); assertTrue(captor.getValue().getName().equals("t1")); Mockito.reset(type_repository); param.put("name", "t2"); param.put("name", "t3"); param.put("name", "t5"); param.put("name", "t4"); type_api.addType(param); verify(type_repository).save(captor.capture()); assertTrue(captor.getValue().getName().equals("t1") || captor.getValue().getName().equals("t2") || captor.getValue().getName().equals("t3") || captor.getValue().getName().equals("t4") || captor.getValue().getName().equals("t5")); Mockito.reset(type_repository); param.put("fdfasas", "t5"); assertThrows(IllegalRequestException.class, () -> { type_api.addType(param); }); param.clear(); assertThrows(IllegalRequestException.class, () -> { type_api.addType(param); }); } @Test public void updateTest() throws JSONException { HashMap<String, String> param = new HashMap<>(); param.put("name", "t11"); Type type1 = new Type("t1"); type1.setId(1); when(type_repository.findById(1)).thenReturn( Optional.of(type1) ); type_api.setTypeById(1, param); verify(type_repository).save(captor.capture()); verify(type_repository).findById(1); assertTrue(captor.getValue().getName().equals("t11")); assertTrue(captor.getValue().getId().equals(1)); Mockito.reset(type_repository); param.put("name", "t22"); param.put("name", "t33"); param.put("name", "t55"); param.put("name", "t44"); when(type_repository.findById(1)).thenReturn( Optional.of(type1) ); when(type_repository.findById(2)).thenReturn( Optional.empty() ); type_api.setTypeById(1, param); verify(type_repository).save(captor.capture()); verify(type_repository).findById(1); assertTrue(captor.getValue().getName().equals("t11") || captor.getValue().getName().equals("t22") || captor.getValue().getName().equals("t33") || captor.getValue().getName().equals("t44") || captor.getValue().getName().equals("t55")); assertThrows(NoResourceFoundException.class, () -> { type_api.setTypeById(2, param); }); param.put("fdfasas", "t5"); assertThrows(IllegalRequestException.class, () -> { type_api.setTypeById(1, param); }); param.clear(); assertDoesNotThrow(() -> { type_api.setTypeById(1, param); }); } @Test public void delTest() { type_api.delTypeById(1); verify(type_repository).deleteById(1); Mockito.doThrow(new IllegalArgumentException()).when(type_repository).deleteById(0); assertThrows(NoResourceFoundException.class, () -> { type_api.delTypeById(0); }); } @Test public void errorTest() { assertThrows(NoEndPointException.class, () -> { type_api.showError(); }); } }
33.875
242
0.643121
c4999bf72da65ea6b4ed2c60b9b9f635fa34310e
2,065
package com.hlk.ythtwl.msgr.model; import android.os.Parcel; import java.io.Serializable; /** * <b>功能描述:</b><br /> * <b>创建作者:</b>SYSTEM <br /> * <b>创建时间:</b>2018/08/22 15:07 <br /> * <b>作者邮箱:</b>xiang.l.g@gmail.com <br /> * <b>最新版本:</b>Version: 1.0.0 <br /> * <b>修改时间:</b>2018/08/22 15:07 <br /> * <b>修改人员:</b><br /> * <b>修改备注:</b><br /> */ public class Point extends Model implements Serializable { private static final long serialVersionUID = -6467389520914620287L; public Point() { super(); } private Point(Parcel parcel) { super(parcel); lng = parcel.readDouble(); lat = parcel.readDouble(); stop = parcel.readLong(); restart = parcel.readLong(); len = parcel.readLong(); } @Override public void writeToParcel(Parcel parcel, int i) { super.writeToParcel(parcel, i); parcel.writeDouble(lng); parcel.writeDouble(lat); parcel.writeLong(stop); parcel.writeLong(restart); parcel.writeLong(len); } public static final Creator<Point> CREATOR = new Creator<Point>() { @Override public Point createFromParcel(Parcel source) { return new Point(source); } @Override public Point[] newArray(int size) { return new Point[size]; } }; private double lng, lat; private long stop, restart, len; public double getLng() { return lng; } public void setLng(double lng) { this.lng = lng; } public double getLat() { return lat; } public void setLat(double lat) { this.lat = lat; } public long getStop() { return stop; } public void setStop(long stop) { this.stop = stop; } public long getRestart() { return restart; } public void setRestart(long restart) { this.restart = restart; } public long getLen() { return len; } public void setLen(long len) { this.len = len; } }
20.858586
71
0.560775
7bc6306b620198895383da53131c8e34a2cca645
4,117
package services; import interfaces.IInputParserService; import io.cucumber.java.en.Given; import io.cucumber.java.en.Then; import io.cucumber.java.en.When; import model.InputModel; import org.junit.Assert; public class InputParserServiceStepDefs { private String inputLine; private InputModel model; @Given("Input to be parsed {string}") public void input_to_be_parsed(String input) { this.inputLine = input; } @When("Merge input is parsed") public void merge_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.MERGE, inputLine); } @When("Cheatpack input is parsed") public void cheatpack_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.CHEATPACK, inputLine); } @When("Rename input is parsed") public void rename_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.RENAME, inputLine); } @When("Hash input is parsed") public void hash_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.HASH, inputLine); } @When("Hashbreak input is parsed") public void hashbreak_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.HASHBREAK, inputLine); } @When("Rawcode input is parsed") public void rawcode_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.RAWCODE, inputLine); } @When("Optimize input is parsed") public void optimize_input_is_parsed() { IInputParserService parserService = new InputParserService(); this.model = parserService.splitInput(IInputParserService.SplitType.OPTIMIZE, inputLine); } @Then("Rawcode wtsfile should be {string}") public void rawcode_wtsfile_should_be(String wtsString) { Assert.assertEquals(wtsString, model.getWtsFile()); } @Then("Optimize Output should be {string}") public void optimize_Output_should_be(String output) { Assert.assertEquals(output, model.getOutputPath()); } @Then("Rawcode input should be {string}") public void rawcode_input_should_be(String input) { Assert.assertEquals(input, model.getRawcodeInput()); } @Then("Rawcode output should be {string}") public void rawcode_output_should_be(String output) { Assert.assertEquals(output, model.getRawcodeOutput()); } @Then("Tree1 should exist") public void tree1_should_exist() { Assert.assertNotNull(this.model.getTree1()); } @Then("Tree2 should exist") public void tree2_should_exist() { Assert.assertNotNull(this.model.getTree2()); } @Then("Output path should be {string}") public void output_path_should_be(String output) { Assert.assertEquals(output, this.model.getOutputPath()); } @Then("Activator should be {string}") public void activator_should_be(String act) { Assert.assertEquals(act, model.getActivator()); } @Then("New Name should be {string}") public void new_Name_should_be(String name) { Assert.assertEquals(name, model.getNewName()); } @Then("Old Name should be {string}") public void old_Name_should_be(String name) { Assert.assertEquals(name, model.getOldName()); } @Then("Plaintext should be {string}") public void plaintext_should_be(String text) { Assert.assertEquals(text, model.getPlaintext()); } @Then("Hash should be {string}") public void hash_should_be(String hash) { Assert.assertEquals(hash, model.getHash()); } }
33.745902
98
0.704396
9f740a34017f8de7e2da08b5c501bb90731438ce
516
package io.quarkus.gradle.dsl; import java.util.ArrayList; import java.util.List; public class CompilerOption { private final String name; private final List<String> opts = new ArrayList<>(0); public CompilerOption(String name) { this.name = name; } public CompilerOption args(List<String> options) { opts.addAll(options); return this; } public String getName() { return name; } public List<String> getArgs() { return opts; } }
17.793103
57
0.627907
5665d2adaf9f219a1fef14085bea42bf8185255b
6,018
package server; import java.io.*; import java.net.Socket; import java.util.ArrayList; import java.util.concurrent.BlockingQueue; public class ClientHandler implements Runnable{ private Socket client; private BufferedReader in; private PrintWriter out; private ArrayList<ClientHandler> clientHandlers; private BlockingQueue<Message> messages; private String userName = null; public ClientHandler(Socket clientSocket, ArrayList<ClientHandler> clients, BlockingQueue<Message> messages) throws IOException { this.client = clientSocket; this.in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream())); this.out = new PrintWriter(clientSocket.getOutputStream(), true); this.clientHandlers = clients; this.messages = messages; } @Override public void run() { try{ out.println(); // Needed for Windows. Without, telnet won't register the keyboard on the get go String request = in.readLine(); connectUserToChat(request); if(userName != null){ while(true){ request = in.readLine(); protocol(request); } } }catch(IOException | InterruptedException e){ System.err.println("IO exception in client handler"); System.err.println(e.getStackTrace()); } finally { out.close(); try { in.close(); } catch (IOException e) { e.printStackTrace(); } } } private void connectUserToChat(String request) throws IOException { String[] splittedRequest = request.split("#"); String command = splittedRequest[0]; String data = ""; String serverResponse = ""; if(splittedRequest.length >= 2) { data = splittedRequest[1]; } switch(command){ case "CONNECT": userName = data; serverResponse = "ONLINE#"; for(int i = 0; i < clientHandlers.size(); i++){ if(clientHandlers.get(i).getUsername() != null){ serverResponse += clientHandlers.get(i).getUsername() + ","; } } serverResponse = serverResponse.substring(0, serverResponse.length() - 1); // Remove last "," for(ClientHandler clientHandler : clientHandlers){ clientHandler.getPw().println(serverResponse); } break; default: getPw().println("CLOSE#1"); clientHandlers.remove(clientHandlers.indexOf(this)); client.close(); } } private void protocol(String request) throws InterruptedException, IOException { String[] splittedRequest = request.split("#"); String command = splittedRequest[0]; String data = ""; String serverResponse = ""; if(splittedRequest.length >= 2){ data = splittedRequest[1]; } switch(command){ case "SEND": String[] recipients = splittedRequest[1].split(","); String msg = splittedRequest[2]; boolean canSend = true; if(recipients.length > 1){ for(String recipient : recipients){ boolean foundMatch = false; for(ClientHandler clientHandler : clientHandlers){ if(recipient.equals(clientHandler.getUsername())){ foundMatch = true; break; } } if(!foundMatch){ canSend = false; break; } } } if(canSend){ messages.put(new Message(msg, userName, recipients)); }else{ getPw().println("CLOSE#2"); serverResponse += "ONLINE#"; clientHandlers.remove(clientHandlers.indexOf(this)); for(int i = 0; i < clientHandlers.size(); i++){ if(clientHandlers.get(i).getUsername() != null){ serverResponse += clientHandlers.get(i).getUsername() + ","; } } serverResponse = serverResponse.substring(0, serverResponse.length() - 1); // Remove last "," for(ClientHandler clientHandler : clientHandlers){ clientHandler.getPw().println(serverResponse); } client.close(); } break; case "CLOSE": getPw().println("CLOSE#0"); serverResponse += "ONLINE#"; clientHandlers.remove(clientHandlers.indexOf(this)); for(int i = 0; i < clientHandlers.size(); i++){ if(clientHandlers.get(i).getUsername() != null){ serverResponse += clientHandlers.get(i).getUsername() + ","; } } serverResponse = serverResponse.substring(0, serverResponse.length() - 1); // Remove last "," for(ClientHandler clientHandler : clientHandlers){ clientHandler.getPw().println(serverResponse); } client.close(); default: getPw().println("CLOSE#1"); serverResponse += "ONLINE#"; clientHandlers.remove(clientHandlers.indexOf(this)); for(int i = 0; i < clientHandlers.size(); i++){ if(clientHandlers.get(i).getUsername() != null){ serverResponse += clientHandlers.get(i).getUsername() + ","; } } serverResponse = serverResponse.substring(0, serverResponse.length() - 1); // Remove last "," for(ClientHandler clientHandler : clientHandlers){ clientHandler.getPw().println(serverResponse); } client.close(); } } public String getUsername() { return userName; } public PrintWriter getPw() { return out; } }
30.548223
132
0.543868
6cda335466bc115b5b1bab54e30a83b8bedf7ca7
1,007
package calculatorInJava; import java.util.Scanner; public class Calculator { public static void main(String[] args) { // Calculator in java: Scanner reader = new Scanner(System.in); System.out.println("Enter your first number: "); double first = reader.nextDouble(); System.out.println("Enter your second number: "); double second = reader.nextDouble(); System.out.print("Enter an operator (+, -, *, /): "); char operator = reader.next().charAt(0); double result = 0.0; switch (operator) { case '+': result = first + second; break; case '-': result = first - second; break; case '*': result = first * second; break; case '/': result = first / second; break; default: System.out.println("Error! operator is not correct"); return; } System.out.println(first + " " + operator + " " + second + " = " + result); } }
21.425532
80
0.551142
73693aed60057191dc3571b8787d7724738dc276
4,901
package com.nikhil.shack_demo; import android.graphics.Rect; import android.os.Build; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.Gravity; import android.view.KeyEvent; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import com.nikhil.shackmenu.ShackMenu; import com.nikhil.shackmenu.animation.BombItemAnimation; import com.nikhil.shackmenu.animation.BounceInDownItemAnimation; import com.nikhil.shackmenu.animation.BounceInUpItemAnimation; import com.nikhil.shackmenu.animation.BounceItemAnimation; import com.nikhil.shackmenu.animation.FlipItemAnimation; import com.nikhil.shackmenu.animation.RotateItemAnimation; import com.nikhil.shackmenu.animation.ScaleItemAnimation; import com.nikhil.shackmenu.animation.StandUpItemAnimation; /** * @author Nikhil Joshi * @description Demo for all the opening animation. */ public class OpenAnimationActivity extends AppCompatActivity { private ShackMenu mShackMenu; private ListView mListView; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_open_animation); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { getWindow().setStatusBarColor(getResources().getColor(R.color.colorPrimary)); } MenuHelper.setupToolBarBackAction(this, (Toolbar) findViewById(R.id.toolbar)); initList(); initMenu(); } private void initList(){ mListView = findViewById(R.id.listview); mListView.setAdapter(new ArrayAdapter<>(this, android.R.layout.simple_expandable_list_item_1, MenuHelper.getAllOpenAnimationName())); mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { switch (position){ case 0: mShackMenu.setItemAnimation(0, FlipItemAnimation.create()); mShackMenu.setItemAnimation(1, FlipItemAnimation.create()); break; case 1: mShackMenu.setItemAnimation(0, ScaleItemAnimation.create()); mShackMenu.setItemAnimation(1, ScaleItemAnimation.create()); break; case 2: mShackMenu.setItemAnimation(0, BombItemAnimation.create()); mShackMenu.setItemAnimation(1, BombItemAnimation.create()); break; case 3: mShackMenu.setItemAnimation(0, StandUpItemAnimation.create()); mShackMenu.setItemAnimation(1, StandUpItemAnimation.create()); break; case 4: mShackMenu.setItemAnimation(0, BounceItemAnimation.create()); mShackMenu.setItemAnimation(1, BounceItemAnimation.create()); break; case 5: mShackMenu.setItemAnimation(0, BounceInDownItemAnimation.create()); mShackMenu.setItemAnimation(1, BounceInDownItemAnimation.create()); break; case 6: mShackMenu.setItemAnimation(0, BounceInUpItemAnimation.create()); mShackMenu.setItemAnimation(1, BounceInUpItemAnimation.create()); break; case 7: mShackMenu.setItemAnimation(0, RotateItemAnimation.create()); mShackMenu.setItemAnimation(1, RotateItemAnimation.create()); break; } mShackMenu.show(); } }); } private void initMenu(){ int itemViewWidth = (getWindow().getWindowManager().getDefaultDisplay().getWidth() - 40) / 5; mShackMenu = new ShackMenu.Builder(this) .setGravity(Gravity.CENTER) .setMenuMargin(new Rect(20, 20, 20, 20)) .setMenuPadding(new Rect(0, 10, 0, 10)) .addRow(null, MenuHelper.getTopList(itemViewWidth)) .addRow(null, MenuHelper.getBottomList(itemViewWidth)) .build(); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK){ if (mShackMenu.isShowing()){ mShackMenu.dismiss(); return true; } } return super.onKeyDown(keyCode, event); } }
38.896825
101
0.615793
728fcf78a4887cb459ddd2898a91576d00fbe5e2
3,106
package com.gymnast.data.hotinfo; import java.io.Serializable; /** * Created by Administrator on 2016/7/27. */ public class RecentActivityDetail implements Serializable { String pictureURL;//imageUrl String detail;//descContent= String from; String address; String time; int loverNum;//memberCount String type; String maxpeople; String phone; int userid; int modelID; int id; public int getModelID() { return modelID; } public void setModelID(int modelID) { this.modelID = modelID; } boolean isCollected; public boolean isCollected() { return isCollected; } public void setIsCollected(boolean isCollected) { this.isCollected = isCollected; } public int getUserid() { return userid; } public void setUserid(int userid) { this.userid = userid; } public int getId() { return id; } public void setId(int id) { this.id = id; } long startTime,endTime,lastTime; String title; int price; public long getLastTime() { return lastTime; } public void setLastTime(long lastTime) { this.lastTime = lastTime; } public int getPrice() { return price; } public void setPrice(int price) { this.price = price; } public String getMaxpeople() { return maxpeople; } public void setMaxpeople(String maxpeople) { this.maxpeople = maxpeople; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public long getStartTime() { return startTime; } public void setStartTime(long startTime) { this.startTime = startTime; } public long getEndTime() { return endTime; } public void setEndTime(long endTime) { this.endTime = endTime; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public RecentActivityDetail() { } public String getPictureURL() { return pictureURL; } public void setPictureURL(String pictureURL) { this.pictureURL = pictureURL; } public String getDetail() { return detail; } public void setDetail(String detail) { this.detail = detail; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getTime() { return time; } public void setTime(String time) { this.time = time; } public int getLoverNum() { return loverNum; } public void setLoverNum(int loverNum) { this.loverNum = loverNum; } public String getType() { return type; } public void setType(String type) { this.type = type; } }
21.569444
59
0.592402
0fdf18ff7a0882bfef9e5efcc337c64962df7208
305
package at.cleancode.dynamicproperties; import java.util.Map; import org.springframework.beans.factory.BeanFactoryAware; public interface DynamicPropertiesManager extends BeanFactoryAware { void propertiesChanged(Map<String, String> properties); Map<String, String> getCurrentProperties(); }
23.461538
68
0.809836
f2c8dce208a551ed9b20561525d4bde0d2c32bef
2,092
package fworks.algorithms.sorting.sort.bubblesort; import fworks.algorithms.counter.Counter; import org.springframework.stereotype.Service; /** * Heapsort service implementation. * * @author flaviolcastro * */ @Service public class BubblesortServiceImpl implements BubblesortService { @Override public long[] sort(long[] array, final Counter counter) { return executeSorting(array, counter); } @Override @SuppressWarnings("rawtypes") public Comparable[] sort(Comparable[] array, final Counter counter) { return executeSorting(array, counter); } /** * Execute the sorting on the array. * * @param array to be sorted * @param counter of positions exchanges * @return sorted array */ private long[] executeSorting(long[] array, final Counter counter) { for (int i = 0; i < array.length - 1; i++) { // execute n times // go through the array for (int j = 0; j < array.length - 1; j++) { var first = array[j]; var second = array[j + 1]; // compare index to the next if (less(second, first) && j != j+1) { // if second smaller, exchange it exchange(array, j, j + 1); counter.increaseCounter(); } } } return array; } /** * Execute the sorting on the array. * * @param array to be sorted * @param counter of positions exchanges * @return sorted array */ private Comparable<?>[] executeSorting(Comparable<?>[] array, final Counter counter) { for (int i = 0; i < array.length - 1; i++) { // execute n times // go through the array for (int j = 0; j < array.length - 1; j++) { var first = array[j]; var second = array[j + 1]; // compare index to the next if (less(second, first) && j != j+1) { // if second smaller, exchange it exchange(array, j, j + 1); counter.increaseCounter(); } } } return array; } }
24.045977
89
0.565488
629aa0bd666e746d688eb81d5f25c2fba3872c90
2,511
package com.solvd.thebuildingcompany.employees.departments.management; import com.solvd.thebuildingcompany.employees.Employee; import java.util.HashMap; import java.util.Optional; import java.util.logging.Logger; public class ProjectManager extends Employee { private static final Logger logger = Logger.getLogger(ProjectManager.class.getName()); private boolean positiveFeedback; private boolean passedSoilTesting; private boolean sitePlanMade; private boolean itemsReturned; public boolean isPositiveFeedback() { return positiveFeedback; } public void setPositiveFeedback(final boolean positiveFeedback) { this.positiveFeedback = positiveFeedback; } public boolean isPassedSoilTesting() { return passedSoilTesting; } public void setPassedSoilTesting(final boolean passedSoilTesting) { this.passedSoilTesting = passedSoilTesting; } public boolean isSitePlanMade() { return sitePlanMade; } public void setSitePlanMade(final boolean sitePlanMade) { this.sitePlanMade = sitePlanMade; } public boolean isItemsReturned() { return itemsReturned; } public void setItemsReturned(final boolean itemsReturned) { this.itemsReturned = itemsReturned; } public ProjectManager(final String name, final String nameOfCompany){ super(name, nameOfCompany); } private HashMap<String, Boolean> constructionSitePreparations() { final ProjectManager magnus = new ProjectManager("Magnus", "The Building Company"); magnus.setPositiveFeedback(true); magnus.setPassedSoilTesting(true); magnus.setSitePlanMade(true); logger.info("Project Manager Checks:"); final HashMap<String, Boolean> checkpoints = new HashMap<>(); checkpoints.put("Positive Survey Result Achieved, ", magnus.isPositiveFeedback()); checkpoints.put("Soil Testing Passed: ", magnus.isPassedSoilTesting()); checkpoints.put("Site Plan Created: ", magnus.isSitePlanMade()); checkpoints.forEach((key, value) -> logger.info(key + " " + value)); return checkpoints; } private String projectCloseOut() { final ProjectManager ralph = new ProjectManager("Ralph", "The Building Company"); ralph.setItemsReturned(true); logger.info("Resources are demobilized: " + ralph.isItemsReturned()); return "Resources are demobilized: " + ralph.isItemsReturned(); } }
30.621951
91
0.704102
3198f9e3fe2b6e8d74d64f3d2e5f3d86b88cda3e
4,638
package org.knowm.xchange.bleutrade; import java.math.BigDecimal; import java.util.Date; import org.knowm.xchange.currency.Currency; import org.knowm.xchange.currency.CurrencyPair; import org.knowm.xchange.dto.Order; import org.knowm.xchange.dto.account.Balance; import org.knowm.xchange.dto.marketdata.Ticker; import org.knowm.xchange.dto.marketdata.Trade; import org.knowm.xchange.dto.meta.CurrencyPairMetaData; import org.knowm.xchange.dto.trade.LimitOrder; import static org.knowm.xchange.bleutrade.BleutradeUtils.toDate; public class BleutradeTestData { protected static final CurrencyPair BLEU_BTC_CP = new CurrencyPair("BLEU", "BTC"); protected static Balance[] expectedAccountBalances() { return new Balance[]{new Balance(Currency.AUD, new BigDecimal("40.00000000"), new BigDecimal("10.00000000"), new BigDecimal("30.00000000")), new Balance(Currency.BTC, new BigDecimal("100.00000000"), new BigDecimal("40.00000000"), new BigDecimal("60.00000000")), new Balance(new Currency("BLEU"), new BigDecimal("160.00000000"), new BigDecimal("70.00000000"), new BigDecimal("90.00000000")),}; } protected static Balance[] expectedBalances() { return new Balance[]{new Balance(Currency.DOGE, new BigDecimal("0E-8"), new BigDecimal("0E-8"), new BigDecimal("0E-8")), new Balance(Currency.BTC, new BigDecimal("15.49843675"), new BigDecimal("13.98901996"), new BigDecimal("0E-8")),}; } protected static Trade[] expectedTrades() { return new Trade[]{ new Trade(Order.OrderType.BID, new BigDecimal("654971.69417461"), CurrencyPair.BTC_AUD, new BigDecimal("0.00000055"), new Date(1406657280000L), null), new Trade(Order.OrderType.ASK, new BigDecimal("120.00000000"), CurrencyPair.BTC_AUD, new BigDecimal("0.00006600"), new Date(1406657555000L), null),}; } protected static LimitOrder[] expectedPlacedOrders() { return new LimitOrder[]{new LimitOrder(Order.OrderType.BID, new BigDecimal("10.00000000"), CurrencyPair.BTC_AUD, "", null, new BigDecimal("1.1")), new LimitOrder(Order.OrderType.ASK, new BigDecimal("20.00000000"), CurrencyPair.BTC_AUD, "", null, new BigDecimal("2.2"))}; } protected static LimitOrder[] expectedOrders() { return new LimitOrder[]{ new LimitOrder(Order.OrderType.BID, new BigDecimal("5.00000000"), CurrencyPair.LTC_BTC, "65489", toDate("2014-08-03 13:55:20"), new BigDecimal("0.01268311")), new LimitOrder(Order.OrderType.ASK, new BigDecimal("795.00000000"), CurrencyPair.DOGE_BTC, "65724", toDate("2014-07-29 18:45:17"), new BigDecimal("0.00000055")), }; } protected static LimitOrder[] expectedBids() { return new LimitOrder[]{ new LimitOrder(Order.OrderType.BID, new BigDecimal("4.99400000"), CurrencyPair.BTC_AUD, null, null, new BigDecimal("3.00650900")), new LimitOrder(Order.OrderType.BID, new BigDecimal("50.00000000"), CurrencyPair.BTC_AUD, null, null, new BigDecimal("3.50000000"))}; } protected static LimitOrder[] expectedAsks() { return new LimitOrder[]{ new LimitOrder(Order.OrderType.ASK, new BigDecimal("12.44147454"), CurrencyPair.BTC_AUD, null, null, new BigDecimal("5.13540000")), new LimitOrder(Order.OrderType.ASK, new BigDecimal("100.00000000"), CurrencyPair.BTC_AUD, null, null, new BigDecimal("6.25500000")), new LimitOrder(Order.OrderType.ASK, new BigDecimal("30.00000000"), CurrencyPair.BTC_AUD, null, null, new BigDecimal("6.75500001")), new LimitOrder(Order.OrderType.ASK, new BigDecimal("13.49989999"), CurrencyPair.BTC_AUD, null, null, new BigDecimal("6.76260099"))}; } protected static Ticker expectedTicker() { return new Ticker.Builder().currencyPair(BLEU_BTC_CP).last(new BigDecimal("0.00101977")).bid(new BigDecimal("0.00100000")) .ask(new BigDecimal("0.00101977")).high(new BigDecimal("0.00105000")).low(new BigDecimal("0.00086000")).vwap(new BigDecimal("0.00103455")) .volume(new BigDecimal("2450.97496015")).timestamp(new Date(1406632770000L)).build(); } protected static CurrencyPairMetaData[] expectedMetaDataList() { return new CurrencyPairMetaData[]{new CurrencyPairMetaData(new BigDecimal("0.0025"), new BigDecimal("0.10000000"), null, 8), new CurrencyPairMetaData(new BigDecimal("0.0025"), new BigDecimal("0.00000001"), null, 8)}; } protected static String[] expectedMetaDataStr() { return new String[]{"CurrencyPairMetaData [tradingFee=0.0025, minimumAmount=0.10000000, maximumAmount=null, priceScale=8]", "CurrencyPairMetaData [tradingFee=0.0025, minimumAmount=1E-8, maximumAmount=null, priceScale=8]"}; } }
56.560976
169
0.725097
c788ab4daebe8ecfcaaaa2c245556b168ebe024c
489
package com.ap.dao; import java.util.List; import com.ap.entity.Product; public interface ProductDao { public List<Product> getAllProduct(); public boolean delProductById(int id); public Product getProductById(int id);//�����ƶ�ID��¼ public boolean updateProduct(Product p);//�޸ļ�¼ public void addProduct(Product p);//�����¼ public List<Product> getProductByProductName(String productName); public List<Product> getProductByBigcategory(String Bigcategory); }
25.736842
67
0.734151
6c6e254119b1092f45b7f01f190af0226e67fcfe
306
package com.google.android.gms.common.internal; import android.os.IInterface; import android.os.RemoteException; import com.google.android.gms.dynamic.IObjectWrapper; public interface zzat extends IInterface { IObjectWrapper zzafo() throws RemoteException; int zzafp() throws RemoteException; }
25.5
53
0.803922
3e392f0cd806de155837db534dfb2a5f754311c4
3,327
package fm.peremen.android; /* * Copyright 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import android.content.Context; import android.media.AudioManager; public class PlaybackEngine { static long mEngineHandle = 0; static { System.loadLibrary("peremenfm"); } static boolean create(){ if (mEngineHandle == 0){ mEngineHandle = native_createEngine(); } return (mEngineHandle != 0); } static void setDefaultStreamValues(Context context, int defaultSampleRate, int defaultChannelCount) { AudioManager myAudioMgr = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE); String framesPerBurstStr = myAudioMgr.getProperty(AudioManager.PROPERTY_OUTPUT_FRAMES_PER_BUFFER); int defaultFramesPerBurst = Integer.parseInt(framesPerBurstStr); native_setDefaultStreamValues(defaultSampleRate, defaultChannelCount, defaultFramesPerBurst); } static void delete(){ if (mEngineHandle != 0){ native_deleteEngine(mEngineHandle); } mEngineHandle = 0; } static void prepare(String filePath) { if (mEngineHandle == 0) return; native_prepare(mEngineHandle, filePath); } static void play(long offset, long size) { if (mEngineHandle == 0) return; native_play(mEngineHandle, offset, size); } static void setPlaybackShift(long playbackShift) { if (mEngineHandle == 0) return; native_setPlaybackShift(mEngineHandle, playbackShift); } static long getCurrentPositionMillis(){ if (mEngineHandle == 0) return 0; return native_getCurrentPositionMillis(mEngineHandle); } static long getTotalPathMills(){ if (mEngineHandle == 0) return 0; return native_getTotalPatchMills(mEngineHandle); } static double getCurrentOutputLatencyMillis(){ if (mEngineHandle == 0) return 0; return native_getCurrentOutputLatencyMillis(mEngineHandle); } private static native long native_createEngine(); private static native void native_deleteEngine(long engineHandle); private static native long native_getCurrentPositionMillis(long engineHandle); private static native long native_getTotalPatchMills(long engineHandle); private static native double native_getCurrentOutputLatencyMillis(long engineHandle); private static native void native_setDefaultStreamValues(int sampleRate, int channelCount, int framesPerBurst); private static native void native_prepare(long engineHandle, String filePath); private static native void native_play(long engineHandle, long offset, long size); private static native void native_setPlaybackShift(long engineHandle, long playbackShift); }
36.163043
115
0.724376
1f8370fbc32d66470fe263b0dd7c5e01d9057221
4,436
package tonius.simplyjetpacks.client.handler; import java.util.Iterator; import net.minecraft.client.Minecraft; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.item.ItemStack; import net.minecraft.potion.Potion; import tonius.simplyjetpacks.SimplyJetpacks; import tonius.simplyjetpacks.client.audio.SoundJetpack; import tonius.simplyjetpacks.config.Config; import tonius.simplyjetpacks.handler.SyncHandler; import tonius.simplyjetpacks.item.ItemPack.ItemJetpack; import tonius.simplyjetpacks.item.meta.Jetpack; import tonius.simplyjetpacks.setup.ParticleType; import cpw.mods.fml.common.eventhandler.SubscribeEvent; import cpw.mods.fml.common.gameevent.TickEvent.ClientTickEvent; import cpw.mods.fml.common.gameevent.TickEvent.Phase; public class ClientTickHandler { private static final Minecraft mc = Minecraft.getMinecraft(); private static ParticleType lastJetpackState = null; private static boolean wearingJetpack = false; private static boolean sprintKeyCheck = false; private static void tickStart() { if (mc.thePlayer == null) { return; } ParticleType jetpackState = null; ItemStack armor = mc.thePlayer.getEquipmentInSlot(3); if (armor != null && armor.getItem() instanceof ItemJetpack) { Jetpack jetpack = ((ItemJetpack) armor.getItem()).getPack(armor); if (jetpack != null) { jetpackState = jetpack.getDisplayParticleType(armor, (ItemJetpack) armor.getItem(), mc.thePlayer); } wearingJetpack = true; } else { wearingJetpack = false; } if (jetpackState != lastJetpackState) { lastJetpackState = jetpackState; SyncHandler.processJetpackUpdate(mc.thePlayer.getEntityId(), jetpackState); } } private static void tickEnd() { if (mc.thePlayer == null || mc.theWorld == null) { return; } if (!mc.isGamePaused()) { Iterator<Integer> itr = SyncHandler.getJetpackStates().keySet().iterator(); int currentEntity; while (itr.hasNext()) { currentEntity = itr.next(); Entity entity = mc.theWorld.getEntityByID(currentEntity); if (entity == null || !(entity instanceof EntityLivingBase) || entity.dimension != mc.thePlayer.dimension) { itr.remove(); } else { ParticleType particle = SyncHandler.getJetpackStates().get(currentEntity); if (particle != null) { if (entity.isInWater() && particle != ParticleType.NONE) { particle = ParticleType.BUBBLE; } SimplyJetpacks.proxy.showJetpackParticles(mc.theWorld, (EntityLivingBase) entity, particle); if (Config.jetpackSounds && !SoundJetpack.isPlayingFor(entity.getEntityId())) { Minecraft.getMinecraft().getSoundHandler().playSound(new SoundJetpack((EntityLivingBase) entity)); } } else { itr.remove(); } } } } if (sprintKeyCheck && mc.thePlayer.movementInput.moveForward < 1.0F) { sprintKeyCheck = false; } if (!Config.doubleTapSprintInAir || !wearingJetpack || mc.thePlayer.onGround || mc.thePlayer.isSprinting() || mc.thePlayer.isUsingItem() || mc.thePlayer.isPotionActive(Potion.blindness)) { return; } if (!sprintKeyCheck && mc.thePlayer.movementInput.moveForward >= 1.0F && !mc.thePlayer.isCollidedHorizontally && (mc.thePlayer.getFoodStats().getFoodLevel() > 6.0F || mc.thePlayer.capabilities.allowFlying)) { if (mc.thePlayer.sprintToggleTimer <= 0 && !mc.gameSettings.keyBindSprint.getIsKeyPressed()) { mc.thePlayer.sprintToggleTimer = 7; sprintKeyCheck = true; } else { mc.thePlayer.setSprinting(true); } } } @SubscribeEvent public void onClientTick(ClientTickEvent evt) { if (evt.phase == Phase.START) { tickStart(); } else { tickEnd(); } } }
40.697248
216
0.605275
e5a1c26efcb60f38270b8c02b2f91b8a6e974202
232
package cn.clownmask.modules.generator.dao; import org.apache.ibatis.annotations.Mapper; /** * SQLServer代码生成器 * * @author Mark hanchaoqun@hotmail.com */ @Mapper public interface SQLServerGeneratorDao extends GeneratorDao { }
16.571429
61
0.775862
bf90a5558434d70213d87949c8e19c44f384c932
493
import java.util.*; public class a022 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(sc.hasNext()){ String a = sc.next(); int b = a.length()/2; int c=0; char [] d = new char [a.length()]; a.getChars(0,a.length(),d,0); for (int i=0 ; i<d.length ; i++){ if(d[i] == d[d.length-i-1]) c++; } System.out.println(c>=b?"yes":"no"); } } }
27.388889
45
0.452333
73bdad42175565c35042128c0624f5fee5bb70dc
40,724
package com.avereon.data; import com.avereon.event.Event; import com.avereon.event.EventHandler; import com.avereon.event.EventHub; import com.avereon.event.EventType; import com.avereon.transaction.*; import lombok.CustomLog; import java.util.*; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CopyOnWriteArraySet; import java.util.function.BiFunction; import java.util.function.Function; import java.util.function.Supplier; import java.util.stream.Collectors; /** * A generic data node supporting getting and setting values, a modified (or * dirty) flag, {@link NodeEvent events} and {@link Txn transactions}. It is * expected that this class be inherited and that sub-classes will be configured * to represent specific data types. For example, consider this Person type: * <p> * <pre> * public class Person extends Node { * * public Person( String id ) { * definePrimaryKey( "id" ); * defineNaturalKey( "name" ); * setModifyingKeys( "name" ); * setValue( "id", id ); * } * * public String getId() { * return getValue( "id" ); * } * * public String getName() { * return getValue( "name" ); * } * * public Person setName( String name ) { * setValue( "name", name ); * return this; * } * * ... * * } * </pre> * <p> * This class defines a Person type with a primary key of &quot;id&quot; and a * natural key of &quot;name&quot;. Both primary keys and natural keys are use * in the calculation of {@link #hashCode()} and {@link #equals(Object)}. It is * good practice to always define a single value primary key. It is not * required to define a natural key. * * <h2>The Modified Flag</h2> * The modified flag allows users of the data type to know if an instance has * been modified since {@link #setModified(boolean) setModifed(false)} was last * called. Note that * only {@link #addModifyingKeys(String...) modifying values} can affect the * modified flag. Using the Person class * above, if the name is "Foo" and the modified flag is false, setting the name to * "Bar" will cause the modified flag to be set to true. Setting the name back to * "Foo" will cause the modified flag to be set back to false, since the name was * originally "Foo". * * <h2>Modifying Values</h2> * By default no values will cause the modified flag to change. In order for a * change in a value to cause a change in the modified flag it must be * configured as a modifying value with the {@link #addModifyingKeys(String...)} * method. Note in the example above that the "name" value was set as a * modifying key. This means that a change to the name value will cause the * modified flag to change, but changes with other values will not cause the * modified flag to change. * * <h2>Events</h2> * Events are produced for almost any action on a data node. Exactly what events * are produced can be rather complex depending on the data structure, the * transaction state and the actions taken. However, simple situations should be * straightforward. For example, setting a value will cause a * {@link NodeEvent#VALUE_CHANGED} event and a {@link NodeEvent#NODE_CHANGED} * event. If the value was a modifying value then a {@link NodeEvent#MODIFIED} * or {@link NodeEvent#UNMODIFIED} event would also be produced. Events * produced during an active {@link Txn transaction} are not fired until the * transaction is committed. Events are not fired if the transaction fails and * is rolled back. * * <h2>Value Events</h2> * Event handlers can also be registered for changes to specific values. This is * to handle the case where lambdas are registered for changes the the value. * Example: * <pre> * person.register( "name", e -&gt; displayPersonName( e.getNewValue() ) ); * </pre> * * <h2>Transactions</h2> * Multiple changes to a data node can be grouped together using {@link Txn * transactions}. Using the {@link Txn} class to create and commit a transaction * is fairly simple: * <p> * <pre> * Txn.create(); * person.setName( "Bar" ); * person.setFavoriteColor( "green" ); * Txn.commit(); * </pre> * As noted above, events produced during an active {@link Txn transaction} are * not fired until the transaction is committed. Events are not fired if the * transaction fails and is rolled back. * * <h2>Child Data Nodes</h2> * Adding a Node to a Node is a common practice. This allows for structured * data models. This mostly affects how the modified flag and events are * handled. If a child node is modified, the parent node is also modified. Also, * some events that occur on a child node are also bubbled up to the parent * node. Particularly, {@link NodeEvent#VALUE_CHANGED} events are propagated to * parent nodes. */ @CustomLog public class Node implements TxnEventTarget, Cloneable, Comparable<Node> { /** * A special object to represent previously null values in the modifiedValues * map. */ private static final Object WAS_PREVIOUSLY_NULL = new Object(); /** * The node event hub. */ private final EventHub hub; /** * The node value change handlers, a special set of handlers for value changes. */ private final Map<String, Map<EventHandler<NodeEvent>, EventHandler<NodeEvent>>> valueChangeHandlers; /** * The node id. */ private String collectionId; /** * The parent of the node. */ private Node parent; /** * The node values. */ private Map<String, Object> values; /** * The list of value keys that specify the primary key. */ private List<String> primaryKeySet; /** * The list of value keys that specify the natural key. */ private List<String> naturalKeySet; /** * The set of value keys that are used to compute hashCode and equals. */ private Set<String> hashEqualsKeyList; /** * The set of value keys intentionally allowed to modify the node. */ private Set<String> includedModifyingKeySet; /** * The set of value keys intentionally not allowed to modify the node. */ private Set<String> excludedModifyingKeySet; private boolean allKeysModify; /** * The set of value keys that are read only. */ private Set<String> readOnlySet; /** * The internally calculated modified flag used to allow for fast read rates. * This is updated when the self modified flag, values or children are changed. */ private boolean modified; // The node self modified flag. private boolean selfModified; /** * The map of values that are modified since the modified flag was last * cleared. This map is set to null when the modified flag is cleared. */ private Map<String, Object> modifiedValues; /** * The count of child nodes that are modified since the modified flag was last * cleared. This set is set to null when the modified flag is cleared. */ private Set<Node> modifiedChildren; private Comparator<Node> comparator; /** * Create a new, generic, empty data node. It is generally expected that the * Node class will be inherited, instead of used directly, but there is no * restriction creating "generic" nodes. */ public Node() { this.collectionId = UUID.randomUUID().toString(); this.hub = new EventHub(); this.valueChangeHandlers = new ConcurrentHashMap<>(); } /** * Is the node modified. The node is modified if any data value has been * modified or any child node has been modified since the last time the * modified flag was cleared. * * @return true if this node or any child nodes are modified, false otherwise. */ public boolean isModified() { return modified; } /** * Set or clear the modified flag. Usually this method is used to clear the * modified flag by setting the value to false. But it is also allowed to * explicitly set the modified value to true for any reason to mark the node * modified. * * @param newValue The new modified flag value */ public void setModified( boolean newValue ) { Txn.run( () -> Txn.submit( new SetSelfModifiedOperation( this, selfModified, newValue ) ) ); } void setAllKeysModify() { this.allKeysModify = true; } /** * Subclasses may implement extra rules regarding the modification of this * node. For example, if a particular value in a field would not allow the * node to be modified then that can be implemented here. * * @param value The node value to use for checking if modify is allowed * @return True if the node can be modified, false otherwise */ public boolean modifyAllowed( Object value ) { return true; } /** * Request that a {@link NodeEvent#NODE_CHANGED} event occur. This is usually * used to cause the node handlers to run if they were added after the node * was changed. This is common during node initialization where the state is * set, the modified flag cleared, the handlers added and then this method is * called. */ public void refresh() { fireHoppingEvent( new NodeEvent( this, NodeEvent.NODE_CHANGED ) ); } /** * Dispatch a {@link TxnEvent} to the data node. This method should not be * called by other classes other than the {@link Txn transaction} classes. * * @param event The transaction event */ @Override public void dispatch( TxnEvent event ) { boolean isNodeEvent = event instanceof NodeEvent; if( isNodeEvent ) doDispatchToNode( (NodeEvent)event ); hub.dispatch( event ); if( !isNodeEvent && getParent() != null ) getParent().dispatch( event ); } /** * Register an event handler with this data node. * * @param type The event type * @param handler The event handler * @param <T> The type of event to handle * @return The data node's {@link EventHub} */ public <T extends Event> EventHub register( EventType<? super T> type, EventHandler<? super T> handler ) { return hub.register( type, handler ); } /** * Unregister an event handler from this data node. * * @param type The event type * @param handler The event handler * @param <T> The type of event to handle * @return The data node's {@link EventHub} */ public <T extends Event> EventHub unregister( EventType<? super T> type, EventHandler<? super T> handler ) { return hub.unregister( type, handler ); } /** * Get a map of all the event handlers for this node by event type. * * @return A map of the event handlers keyed by event type */ Map<EventType<? extends Event>, Collection<? extends EventHandler<? extends Event>>> getEventHandlers() { return hub.getEventHandlers(); } /** * Get this data node's {@link EventHub} * * @return The data node event hub */ protected EventHub getEventHub() { return hub; } /** * Register a value changed event handler for a specific value key. This is * useful to register lambda style event handlers for specific value changes. * <p> * NOTE: These handlers only receive value changed events that happen on this * node not on any child nodes like normal listeners. * </p> * * @param key The value key * @param handler The value changed handler */ public void register( String key, EventHandler<NodeEvent> handler ) { valueChangeHandlers.computeIfAbsent( key, ( k ) -> new WeakHashMap<>() ).put( handler, handler ); } /** * Unregister a value changed event handler for a specific value key. * * @param key The value key * @param handler The value changed handler */ public void unregister( String key, EventHandler<NodeEvent> handler ) { valueChangeHandlers.getOrDefault( key, Map.of() ).remove( handler ); } // public <T extends Event> void register( String key, EventType<? super T> type, EventHandler<NodeEvent> handler ) { // valueChangeHandlers.computeIfAbsent( key, ( k ) -> new WeakHashMap<>() ).put( handler, handler ); // } // // public <T extends Event> void unregister( String key, EventType<? super T> type, EventHandler<NodeEvent> handler ) { // valueChangeHandlers.getOrDefault( key, Map.of() ).remove( handler ); // } /** * Copy the values and resources from the specified node. This method will * only fill in missing values and resources from the specified node. * * @param node The node from which to copy values and resources */ public <T extends Node> T copyFrom( Node node ) { return copyFrom( node, false ); } /** * Copy the values and resources from the specified node. If overwrite is true * this method will replace any values or resources with the specified nodes * values and resources. Otherwise, this method will only fill in missing * values and resources from the specified node. * * @param node The node from which to copy values and resources * @param overwrite Should the new values overwrite existing values */ @SuppressWarnings( "unchecked" ) public <T extends Node> T copyFrom( Node node, boolean overwrite ) { // Clone values for( String key : node.getValueKeys() ) { // Do not overwrite primary key values if( isPrimaryKey( key ) ) continue; // Copy non-primary key values if( overwrite || getValue( key ) == null ) setValue( key, node.getValue( key ) ); } return (T)this; } /** * Get a string representation of this node. By default this implementation * only returns the primary and natural keys and values. For a full list of * values use {@link #toString(boolean) toString(true)}. For a list of * specific values use {@link #toString(List)}. * * @return A string representation of this node */ @Override public String toString() { return toString( false ); } /** * Get a string representation of this node, optionally including all values. * * @param allValues Whether to include all values or not * @return A string representation of this node */ public String toString( boolean allValues ) { List<String> keys = new ArrayList<>(); if( allValues ) { keys.addAll( getValueKeys() ); } else { keys.addAll( getPrimaryKey() ); keys.addAll( getNaturalKey() ); keys.addAll( getModifyingKeys() ); } Collections.sort( keys ); return toString( keys ); } /** * Get a string representation of this node but only with the requested * value keys included. * * @param keys The value keys to include * @return A string representation of this node */ public String toString( String... keys ) { return toString( Arrays.asList( keys ) ); } /** * Get a string representation of this node but only with the requested * value keys included. * * @param keys The value keys to include * @return A string representation of this node */ public String toString( List<String> keys ) { StringBuilder builder = new StringBuilder(); boolean first = true; builder.append( getClass().getSimpleName() ); builder.append( "{" ); if( keys != null ) { for( String key : keys ) { Object value = getValue( key ); if( value == null ) continue; if( !first ) builder.append( "," ); builder.append( key ); builder.append( "=" ); builder.append( value ); first = false; } } builder.append( "}" ); return builder.toString(); } public boolean equals( Object object, String... keys ) { return equals( object, Set.of( keys ) ); } public boolean equals( Object object, Set<String> keys ) { if( object == null || this.getClass() != object.getClass() ) return false; Node that = (Node)object; Set<String> mismatchedKeys = keys.stream().filter( k -> !Objects.equals( this.getValue( k ), that.getValue( k ) ) ).collect( Collectors.toSet() ); return mismatchedKeys.isEmpty(); } @Override public boolean equals( Object object ) { if( object == null || this.getClass() != object.getClass() ) return false; if( hashEqualsKeyList == null ) { hashEqualsKeyList = new HashSet<>(); hashEqualsKeyList.addAll( getPrimaryKey() ); hashEqualsKeyList.addAll( getNaturalKey() ); } return equals( object, hashEqualsKeyList ); } @Override public int hashCode() { int hashcode = 0; if( hashEqualsKeyList == null ) { hashEqualsKeyList = new HashSet<>(); hashEqualsKeyList.addAll( getPrimaryKey() ); hashEqualsKeyList.addAll( getNaturalKey() ); } for( String key : hashEqualsKeyList ) { Object value = getValue( key ); if( value != null ) hashcode ^= value.hashCode(); } return hashcode == 0 ? super.hashCode() : hashcode; } @Override public int compareTo( Node that ) { if( comparator == null ) comparator = getComparator(); return comparator.compare( this, that ); } /** * Get a comparator using the natural key values to compare. * * @param <T> The node type * @return A node comparator */ public <T extends Node> Comparator<T> getComparator() { return new NodeComparator<>( getNaturalKey() ); } protected List<String> getPrimaryKey() { return primaryKeySet == null ? List.of() : Collections.unmodifiableList( primaryKeySet ); } protected boolean isPrimaryKey( String key ) { return getPrimaryKey().contains( key ); } /** * Define the primary key for this type. This method is usually called from * the class constructor. * * @param keys The value keys to use as the primary key */ protected void definePrimaryKey( String... keys ) { primaryKeySet = List.of( keys ); hashEqualsKeyList = null; } protected List<String> getNaturalKey() { return naturalKeySet == null ? List.of() : Collections.unmodifiableList( naturalKeySet ); } /** * Define the primary key for this type. This method is usually called from * the class constructor. * * @param keys The value keys to use as the natural key */ protected void defineNaturalKey( String... keys ) { naturalKeySet = List.of( keys ); hashEqualsKeyList = null; } protected Set<String> getReadOnlyKeys() { return readOnlySet == null ? Set.of() : Collections.unmodifiableSet( readOnlySet ); } /** * Define what value keys should be marked read-only. * * @param keys The value keys to mark as read-only */ protected void defineReadOnly( String... keys ) { readOnlySet = Set.of( keys ); } /** * Check if the value key is read-only. * * @param key The value key * @return True if the value key is read-only, false otherwise */ protected boolean isReadOnly( String key ) { return getReadOnlyKeys().contains( key ); } public Set<String> getModifyingKeys() { return getValueKeys().stream().filter( this::isModifyingKey ).collect( Collectors.toSet() ); } /** * Add value keys that can change the modified flag if the value is changed. * * @param keys The value keys */ public void addModifyingKeys( String... keys ) { if( includedModifyingKeySet == null ) includedModifyingKeySet = new CopyOnWriteArraySet<>(); includedModifyingKeySet.addAll( Set.of( keys ) ); } /** * Remove value keys that can change the modified flag if the value is changed. * * @param keys The value keys */ public void removeModifyingKeys( String... keys ) { if( includedModifyingKeySet == null ) return; includedModifyingKeySet.removeAll( Set.of( keys ) ); if( includedModifyingKeySet.isEmpty() ) includedModifyingKeySet = null; } public void addExcludedModifyingKeys( String... keys ) { if( excludedModifyingKeySet == null ) excludedModifyingKeySet = new CopyOnWriteArraySet<>(); excludedModifyingKeySet.addAll( Set.of( keys ) ); } /** * Remove value keys not allowed to change the modified flag if the value is * changed. * * @param keys The value keys */ public void removeExcludedModifyingKeys( String... keys ) { if( excludedModifyingKeySet == null ) return; excludedModifyingKeySet.removeAll( Set.of( keys ) ); if( excludedModifyingKeySet.isEmpty() ) excludedModifyingKeySet = null; } /** * Check if the value key is a modifying value key. * * @param key The value key * @return True if the value key is a modifying value key, false otherwise */ public boolean isModifyingKey( String key ) { return (allKeysModify || keyIncludedInModify( key )) && !keyExcludedFromModify( key ); } private boolean keyIncludedInModify( String key ) { return Optional.ofNullable( includedModifyingKeySet ).map( s -> s.contains( key ) ).orElse( false ); } private boolean keyExcludedFromModify( String key ) { return Optional.ofNullable( excludedModifyingKeySet ).map( s -> s.contains( key ) ).orElse( false ); } private boolean isReadOnlyKey( String key ) { return getReadOnlyKeys().contains( key ); } /** * Get the set of value keys. * * @return The set of value keys */ protected Set<String> getValueKeys() { return Collections.unmodifiableSet( Optional.ofNullable( values ).map( Map::keySet ).orElse( Set.of() ) ); } /** * Determine if a particular value key is set. * * @param key The key to check * @return True if the key is set, false otherwise */ protected boolean exists( String key ) { return getValueKeys().contains( key ); } /** * Get all the values. * * @return A collection of all the values */ protected Collection<?> getValues() { return values == null ? Set.of() : values.values(); } /** * Get the values of a specific type * * @param clazz The type of value to find * @param <T> The value type * @return A collection of the values of the specific type */ @SuppressWarnings( "unchecked" ) protected <T> Collection<T> getValues( Class<T> clazz ) { return (Collection<T>)getValues().stream().filter( clazz::isInstance ).collect( Collectors.toUnmodifiableSet() ); } protected <T extends Node> Set<T> getValues( String key ) { return exists( key ) ? Collections.unmodifiableSet( getValue( key ) ) : Set.of(); } protected <T extends Node> List<T> getValueList( String key, Comparator<T> comparator ) { List<T> list = new ArrayList<>( getValues( key ) ); list.sort( comparator ); return list; } protected <T extends Node> void addToSet( String key, T value ) { if( value == null ) return; getValue( key, () -> doSetValue( key, null, new NodeSet<>( key ) ) ).add( value ); } protected <T extends Node> void removeFromSet( String key, T value ) { NodeSet<T> set = getValue( key ); if( set == null ) return; if( set.remove( value ) && set.isNodeSetEmpty() ) doSetValue( key, set, null ); } protected <T extends Node> void addToSet( String key, Collection<T> values ) { if( values.isEmpty() ) return; getValue( key, () -> doSetValue( key, null, new NodeSet<>( key ) ) ).addAll( values ); } protected <T extends Node> void removeFromSet( String key, Collection<T> values ) { NodeSet<T> set = getValue( key ); if( set == null ) return; if( set.removeAll( values ) && set.isNodeSetEmpty() ) doSetValue( key, set, null ); } protected <T extends Node> void clearSet( String key ) { NodeSet<T> set = getValue( key ); if( set == null ) return; set.clear(); doSetValue( key, set, null ); } protected void setSetModifyFilter( String key, Function<Node, Boolean> filter ) { getValue( key, () -> doSetValue( key, null, new NodeSet<>( key ) ) ).setSetModifyFilter( filter ); } /** * If the specified key is not already associated with a value (or is mapped * to {@code null}), attempts to compute its value using the given mapping * function and enters it into this map unless {@code null}. * * @param key The value key * @param function The function to compute a value * @param <T> The value type * @return The value */ protected <T> T computeIfAbsent( String key, Function<String, ? extends T> function ) { T value = getValue( key ); if( value != null ) return value; return setValue( key, function.apply( key ) ); } /** * If the specified key is present (not null), attempts to recompute * its value using the given mapping function and enters it into this map. If * the new value is {@code null} the entry is removed. * * @param key The value key * @param function The function to compute a value * @param <T> The value type * @return The value */ protected <T> T computeIfPresent( String key, BiFunction<String, ? super T, ? extends T> function ) { Objects.requireNonNull( function ); T value = getValue( key ); if( value == null ) return null; return setValue( key, function.apply( key, value ) ); } public boolean isSet( String key ) { return values != null && values.containsKey( key ); } public boolean isNotSet( String key ) { return values == null || !values.containsKey( key ); } /** * Get the value at the specific key. * * @param key The value key * @param <T> The value type * @return The value */ public <T> T getValue( String key ) { return getValue( key, (T)null ); } /** * Get the value for the specific key or the default value if the value has * not been previously set. Note that this method does not set the value. * * @param key The value key * @param defaultValue The default value * @param <T> The value type * @return The value */ public <T> T getValue( String key, T defaultValue ) { return getValue( key, () -> defaultValue ); } /** * Get the value for the specific key or compute the default value with the * specified {@link Supplier} if the value has not been previously set. Note * that this method does not set the value. * * @param key The value key * @param supplier The default value {@link Supplier} * @param <T> The value type * @return The value */ @SuppressWarnings( "unchecked" ) public <T> T getValue( String key, Supplier<T> supplier ) { Objects.requireNonNull( key, "Value key cannot be null" ); T value = values == null ? null : (T)values.get( key ); return value != null ? value : supplier != null ? supplier.get() : null; } /** * Set the value at the specific key. * * @param key The value key * @param newValue The value */ public <T> T setValue( String key, T newValue ) { return setValue( null, key, newValue ); } <T> T setValue( String setKey, String key, T newValue ) { if( key == null ) throw new NullPointerException( "Value key cannot be null" ); if( isReadOnlyKey( key ) ) throw new IllegalStateException( "Attempt to set read-only value: " + key ); Txn.run( () -> Txn.submit( new SetValueOperation( this, setKey, key, getValue( key ), newValue ) ) ); return newValue; } protected Map<String, Object> asMap( String... keys ) { return Arrays.stream( keys ).filter( k -> values.get( k ) != null ).collect( Collectors.toMap( k -> k, k -> values.get( k ) ) ); } /** * Remove all values from this node. */ protected void clear() { Txn.run( () -> getValueKeys().stream().sorted().forEach( k -> setValue( k, null ) ) ); } protected boolean isEmpty() { return values == null || values.isEmpty(); } protected int size() { return values == null ? 0 : values.size(); } protected boolean hasKey( String key ) { return values != null && values.containsKey( key ); } String getCollectionId() { return collectionId; } Node setCollectionId( String id ) { this.collectionId = Objects.requireNonNull( id ); return this; } protected boolean isModifiedBySelf() { return selfModified; } protected boolean isModifiedByValue() { return getModifiedValueCount() > 0; } protected boolean isModifiedByChild() { return getModifiedChildCount() > 0; } protected int getModifiedValueCount() { return modifiedValues == null ? 0 : modifiedValues.size(); } protected int getModifiedChildCount() { return modifiedChildren == null ? 0 : modifiedChildren.size(); } /** * Gets the number of parents in the tree between this node and the specified * node inclusive. If the specified node is this node then it returns 0. If * The specified node is not a parent of this node then it returns -1. */ int distanceTo( Node target ) { if( this == target ) return 0; int count = 0; Node node = this; while( node != null && node != target ) { count++; node = node.getParent(); } return node == null ? -1 : count; } /** * Get the parent node of this node or null if the node does not have a * parent. * * @param <T> The parent type * @return The parent node or null */ @SuppressWarnings( "unchecked" ) public <T extends Node> T getParent() { if( parent instanceof NodeSet ) return parent.getParent(); return (T)parent; } @SuppressWarnings( "unchecked" ) <T extends Node> T getTrueParent() { return (T)parent; } void doSetParent( Node parent ) { checkForCircularReference( parent ); if( this.parent != null ) { // Disconnect } // Set the parent this.parent = parent; if( this.parent != null ) { // Connect } } List<Node> getNodePath() { return getNodePath( null ); } List<Node> getNodePath( Node stop ) { List<Node> path = new ArrayList<>(); if( this != stop && parent != null ) path = parent.getNodePath(); path.add( this ); return path; } private void doSetSelfModified( boolean newValue ) { selfModified = newValue; if( !newValue ) { modifiedValues = null; modifiedChildren = null; } updateInternalModified(); } <S, T> T doSetValue( String key, S oldValue, T newValue ) { if( newValue == null ) { if( values == null ) return null; values.remove( key ); if( values.size() == 0 ) values = null; if( oldValue instanceof Node ) doRemoveFromParent( (Node)oldValue, true ); } else { if( values == null ) values = new ConcurrentHashMap<>(); if( newValue instanceof Node ) doRemoveFromParent( (Node)newValue, false ); values.put( key, newValue ); if( newValue instanceof Node ) ((Node)newValue).doSetParent( this ); } updateInternalModified(); return newValue; } private void doRemoveFromParent( Node child, boolean quiet ) { Node parent = child.getParent(); if( parent != null ) { parent.getValueKeys().stream().filter( k -> parent.getValue( k ).equals( child ) ).forEach( k -> { if( quiet ) { parent.doSetValue( k, child, null ); } else { parent.setValue( k, null ); } } ); child.doSetParent( null ); } } private void doSetChildModified( Node child, boolean newModified ) { // Update the modified children set if( values.containsValue( child ) ) this.modifiedChildren = updateModifiedSet( modifiedChildren, child, newModified ); updateInternalModified(); } /** * This implementation is different than calling isModified() because this * implementation uses the internal flags for the value, not just the * computed modified flag. * * @return If the node is modified */ private boolean isInternalModified() { return isModifiedBySelf() | isModifiedByValue() | isModifiedByChild(); } private void updateInternalModified() { modified = isInternalModified(); } private <T> Set<T> updateModifiedSet( Set<T> set, T child, boolean newValue ) { if( newValue ) { if( set == null ) set = new CopyOnWriteArraySet<>(); set.add( child ); } else if( set != null ) { set.remove( child ); if( set.size() == 0 ) set = null; } return set; } /** * Dispatch a {@link NodeEvent} to the data node. This method should not be * called by other classes other than the {@link Node data} class. * * @param event The data node event */ private void doDispatchToNode( NodeEvent event ) { // Dispatch to value change handlers only when the event is on itself boolean self = event.getNode() == this; boolean valueChanged = event.getEventType() == NodeEvent.VALUE_CHANGED; if( self && valueChanged ) { ConcurrentModificationException exception; do { try { exception = null; var valueHandlers = new HashMap<>( valueChangeHandlers.getOrDefault( event.getKey(), Map.of() ) ); valueHandlers.forEach( ( k, v ) -> v.handle( event ) ); } catch( ConcurrentModificationException cme ) { exception = cme; } } while( exception != null ); } } private void checkForCircularReference( Node parent ) { checkForCircularReference( parent, this ); } private static void checkForCircularReference( Node parent, Node node ) { Node next = parent; while( next != null ) { if( node == next ) throw new CircularReferenceException( "Circular reference detected in parent path: " + node ); next = next.getParent(); } } /** * Fire a hopping event. A hopping event is where a new event of the * same type is generated for the node and each parent. * * @param event The event */ private void fireHoppingEvent( NodeEvent event ) { Node node = this; while( node != null ) { fireTargetedEvent( node, new NodeEvent( node, event.getEventType() ) ); node = node.getParent(); } } private void fireTargetedEvent( Node target, NodeEvent event ) { target.getEventHub().dispatch( event ); } private static abstract class NodeTxnOperation extends TxnOperation { NodeTxnOperation( Node node ) { super( node ); } final Node getNode() { return (Node)getTarget(); } final void fireEvent( NodeEvent event ) { fireTargetedEvent( getNode(), event ); } /** * Fire a sliding event. A sliding event is where the same event is sent * to the node and all parents. * * @param event The event */ protected final void fireSlidingEvent( NodeEvent event ) { Node node = event.getNode(); while( node != null ) { fireTargetedEvent( node, event ); node = node.getParent(); } } /** * Fire a hopping event. A hopping event is where a new event of the * same type is generated for the node and each parent. * * @param event The event */ final void fireHoppingEvent( NodeEvent event ) { Node node = getNode(); while( node != null ) { fireTargetedEvent( node, new NodeEvent( node, event.getEventType() ) ); node = node.getParent(); } } final void fireDroppingEvent( EventType<NodeEvent> type ) { Node source = getNode(); Node target = getNode(); if( source instanceof NodeSet ) source = source.getParent(); if( source == null ) return; fireDroppingEvent( target, new NodeEvent( source, type ) ); } final void fireDroppingEvent( Node target, NodeEvent event ) { if( target == null || target.values == null ) return; NodeEvent newEvent = new NodeEvent( event.getNode(), event.getEventType() ); for( Object value : target.values.values() ) { if( value instanceof Node ) { Node child = (Node)value; if( child instanceof NodeSet ) { for( Object setValue : (NodeSet<?>)value ) { child = (Node)setValue; fireTargetedEvent( child, newEvent ); fireDroppingEvent( child, newEvent ); } } else { fireTargetedEvent( child, newEvent ); fireDroppingEvent( child, newEvent ); } } } } final void fireTargetedEvent( Node target, NodeEvent event ) { getResult().addEvent( target, event ); } } static class SetSelfModifiedOperation extends NodeTxnOperation { private final boolean oldValue; private final boolean newValue; SetSelfModifiedOperation( Node node, boolean oldValue, boolean newValue ) { super( node ); this.oldValue = oldValue; this.newValue = newValue; } @Override protected void commit() throws TxnException { // This operation must be created before any changes are made boolean modifyAllowed = getNode().modifyAllowed( oldValue ) & getNode().modifyAllowed( newValue ); UpdateModifiedOperation updateModified = new UpdateModifiedOperation( getNode() ); getNode().doSetSelfModified( newValue ); // Propagate the modified false flag value to children if( !newValue && getNode().values != null ) { // NOTE Cannot use parallelStream here because it causes out-of-order events getNode().values.values().stream().filter( v -> v instanceof Node ).map( v -> (Node)v ).filter( Node::isModified ).forEach( v -> v.setModified( false ) ); } if( modifyAllowed ) updateModified.commit(); getResult().addEventsFrom( updateModified ); } @Override protected void revert() { getNode().doSetSelfModified( oldValue ); } @Override public String toString() { return "set flag modified " + oldValue + " -> " + newValue; } } static class SetValueOperation extends NodeTxnOperation { private final String setKey; private final String key; private final Object oldValue; private final Object newValue; SetValueOperation( Node node, String setKey, String key, Object oldValue, Object newValue ) { super( node ); this.setKey = setKey; this.key = key; this.oldValue = oldValue; this.newValue = newValue; } @Override protected void commit() throws TxnException { if( Objects.equals( getNode().getValue( key ), newValue ) ) return; // This operation must be created before any changes are made boolean modifyAllowed = getNode().modifyAllowed( oldValue ) & getNode().modifyAllowed( newValue ); UpdateModifiedOperation updateModified = new UpdateModifiedOperation( getNode() ); getNode().doSetValue( key, oldValue, newValue ); if( newValue instanceof Node && ((Node)newValue).getTrueParent() == null ) throw new RuntimeException( "Node parent not set correctly" ); if( modifyAllowed && getNode().isModifyingKey( key ) ) { // If the preValue is null that means the value for this key has not been modified since the last transaction Object preValue = getNode().modifiedValues == null ? null : getNode().modifiedValues.get( key ); boolean previouslyUnmodified = preValue == null; boolean modifiedToPriorValue = Objects.equals( preValue == WAS_PREVIOUSLY_NULL ? null : preValue, newValue ); // Update the modified value map if( previouslyUnmodified ) { if( getNode().modifiedValues == null ) getNode().modifiedValues = new ConcurrentHashMap<>(); getNode().modifiedValues.putIfAbsent( key, oldValue == null ? WAS_PREVIOUSLY_NULL : oldValue ); } else if( modifiedToPriorValue && getNode().modifiedValues != null ) { getNode().modifiedValues.remove( key ); if( getNode().modifiedValues.size() == 0 ) getNode().modifiedValues = null; } } if( modifyAllowed ) updateModified.commit(); boolean childAdd = oldValue == null && newValue instanceof Node; boolean childRemove = newValue == null && oldValue instanceof Node; if( childAdd ) { fireTargetedEvent( (Node)newValue, new NodeEvent( (Node)newValue, NodeEvent.ADDED ) ); fireSlidingEvent( new NodeEvent( getNode(), NodeEvent.CHILD_ADDED, setKey, key, null, newValue ) ); } else if( childRemove ) { fireTargetedEvent( (Node)oldValue, new NodeEvent( (Node)oldValue, NodeEvent.REMOVED ) ); fireSlidingEvent( new NodeEvent( getNode(), NodeEvent.CHILD_REMOVED, setKey, key, oldValue, null ) ); } else { fireDroppingEvent( NodeEvent.PARENT_CHANGED ); } fireSlidingEvent( new NodeEvent( getNode(), NodeEvent.VALUE_CHANGED, setKey, key, oldValue, newValue ) ); getResult().addEventsFrom( updateModified ); fireHoppingEvent( new NodeEvent( getNode(), NodeEvent.NODE_CHANGED ) ); } @Override protected void revert() { getNode().doSetValue( key, newValue, oldValue ); } @Override public String toString() { return "set value " + key + " " + oldValue + " -> " + newValue; } } static class RefreshOperation extends NodeTxnOperation { RefreshOperation( Node node ) { super( node ); } @Override protected void commit() { fireHoppingEvent( new NodeEvent( getNode(), NodeEvent.NODE_CHANGED ) ); } @Override protected void revert() {} } static class UpdateModifiedOperation extends NodeTxnOperation { private final boolean oldModified; UpdateModifiedOperation( Node node ) { super( node ); oldModified = node.isModified(); } @Override protected void commit() { getNode().updateInternalModified(); boolean newModified = getNode().isModified(); if( newModified != oldModified ) { updateParentsModified( newModified ); fireEvent( new NodeEvent( getNode(), newModified ? NodeEvent.MODIFIED : NodeEvent.UNMODIFIED ) ); fireHoppingEvent( new NodeEvent( getNode(), NodeEvent.NODE_CHANGED ) ); } } private void updateParentsModified( boolean newModified ) { Node node = getNode(); Node parent = node.getTrueParent(); while( parent != null ) { if( !parent.modifyAllowed( node ) ) break; boolean oldParentModified = parent.isModified(); parent.doSetChildModified( node, newModified ); boolean newParentModified = parent.isModified(); boolean parentChanged = oldParentModified != newParentModified; if( parentChanged ) fireTargetedEvent( parent, new NodeEvent( parent, newParentModified ? NodeEvent.MODIFIED : NodeEvent.UNMODIFIED ) ); node = parent; parent = parent.getTrueParent(); } } @Override protected void revert() {} @Override public String toString() { return "update modified from " + oldModified; } } }
30.459237
158
0.685051
ff916c7e41cdeb5ca1602e22e203c56123f1f69d
11,242
/* * This file is part of Wireless Pattern Terminal. Copyright (c) 2017, p455w0rd * (aka TheRealp455w0rd), All rights reserved unless otherwise stated. * * Wireless Pattern Terminal is free software: you can redistribute it and/or * modify it under the terms of the MIT License. * * Wireless Pattern Terminal is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MIT License for * more details. * * You should have received a copy of the MIT License along with Wireless * Pattern Terminal. If not, see <https://opensource.org/licenses/MIT>. */ package p455w0rd.wpt.container; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.concurrent.Future; import javax.annotation.Nonnull; import com.google.common.collect.ImmutableSet; import appeng.api.AEApi; import appeng.api.config.Actionable; import appeng.api.config.SecurityPermissions; import appeng.api.networking.IGrid; import appeng.api.networking.crafting.*; import appeng.api.networking.security.IActionSource; import appeng.api.networking.storage.IStorageGrid; import appeng.api.storage.IMEInventory; import appeng.api.storage.ITerminalHost; import appeng.api.storage.channels.IItemStorageChannel; import appeng.api.storage.data.IAEItemStack; import appeng.api.storage.data.IItemList; import appeng.container.guisync.GuiSync; import appeng.helpers.InventoryAction; import appeng.util.Platform; import net.minecraft.entity.player.*; import net.minecraft.inventory.IContainerListener; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.TextComponentString; import net.minecraft.world.World; import p455w0rd.ae2wtlib.api.WTGuiObject; import p455w0rd.ae2wtlib.api.container.ContainerWT; import p455w0rd.ae2wtlib.api.networking.security.WTIActionHost; import p455w0rd.ae2wtlib.api.networking.security.WTPlayerSource; import p455w0rd.wpt.init.ModGuiHandler; import p455w0rd.wpt.init.ModNetworking; import p455w0rd.wpt.sync.packets.PacketMEInventoryUpdate; import p455w0rd.wpt.sync.packets.PacketSwitchGuis; public class ContainerCraftConfirm extends ContainerWT { public final ArrayList<CraftingCPURecord> cpus = new ArrayList<>(); private int wptSlot = -1; private boolean isBauble = false; private Future<ICraftingJob> job; private ICraftingJob result; @GuiSync(0) public long bytesUsed; @GuiSync(1) public long cpuBytesAvail; @GuiSync(2) public int cpuCoProcessors; @GuiSync(3) public boolean autoStart = false; @GuiSync(4) public boolean simulation = true; @GuiSync(5) public int selectedCpu = -1; @GuiSync(6) public boolean noCPU = true; @GuiSync(7) public String myName = ""; public ContainerCraftConfirm(final InventoryPlayer ip, final ITerminalHost te, final boolean isBauble, final int wctSlot) { super(ip, te, wctSlot, isBauble); this.isBauble = isBauble; wptSlot = wctSlot; } public void cycleCpu(final boolean next) { if (next) { setSelectedCpu(getSelectedCpu() + 1); } else { setSelectedCpu(getSelectedCpu() - 1); } if (getSelectedCpu() < -1) { setSelectedCpu(cpus.size() - 1); } else if (getSelectedCpu() >= cpus.size()) { setSelectedCpu(-1); } if (getSelectedCpu() == -1) { setCpuAvailableBytes(0); setCpuCoProcessors(0); setName(""); /* try { ModNetworking.instance().sendTo(new PacketUpdateCPUInfo(0, 0), (EntityPlayerMP) getPlayerInv().player); } catch (IOException e) { // } */ } else { setName(cpus.get(getSelectedCpu()).getName()); setCpuAvailableBytes(cpus.get(getSelectedCpu()).getSize()); setCpuCoProcessors(cpus.get(getSelectedCpu()).getProcessors()); /* try { ModNetworking.instance().sendTo(new PacketUpdateCPUInfo((int) getCpuAvailableBytes(), getCpuCoProcessors()), (EntityPlayerMP) getPlayerInv().player); } catch (IOException e) { // } */ } } @Override public void detectAndSendChanges() { if (Platform.isClient()) { return; } final ICraftingGrid cc = getGrid().getCache(ICraftingGrid.class); final ImmutableSet<ICraftingCPU> cpuSet = cc.getCpus(); int matches = 0; boolean changed = false; for (final ICraftingCPU c : cpuSet) { boolean found = false; for (final CraftingCPURecord ccr : cpus) { if (ccr.getCpu() == c) { found = true; } } final boolean matched = cpuMatches(c); if (matched) { matches++; } if (found == !matched) { changed = true; } } if (changed || cpus.size() != matches) { cpus.clear(); for (final ICraftingCPU c : cpuSet) { if (cpuMatches(c)) { cpus.add(new CraftingCPURecord(c.getAvailableStorage(), c.getCoProcessors(), c)); } } sendCPUs(); } setNoCPU(cpus.isEmpty()); super.detectAndSendChanges(); if (getJob() != null && getJob().isDone()) { try { result = getJob().get(); if (!result.isSimulation()) { setSimulation(false); if (isAutoStart()) { startJob(); return; } } else { setSimulation(true); } try { final PacketMEInventoryUpdate a = new PacketMEInventoryUpdate((byte) 0); final PacketMEInventoryUpdate b = new PacketMEInventoryUpdate((byte) 1); final PacketMEInventoryUpdate c = result.isSimulation() ? new PacketMEInventoryUpdate((byte) 2) : null; final IItemList<IAEItemStack> plan = AEApi.instance().storage().getStorageChannel(IItemStorageChannel.class).createList(); result.populatePlan(plan); /* try { ModNetworking.instance().sendTo(new PacketSetJobBytes((int) result.getByteTotal()), (EntityPlayerMP) getPlayerInv().player); } catch (IOException e) { // } */ setUsedBytes(result.getByteTotal()); for (final IAEItemStack out : plan) { IAEItemStack o = out.copy(); o.reset(); o.setStackSize(out.getStackSize()); final IAEItemStack p = out.copy(); p.reset(); p.setStackSize(out.getCountRequestable()); final IStorageGrid sg = getGrid().getCache(IStorageGrid.class); final IMEInventory<IAEItemStack> items = sg.getInventory(AEApi.instance().storage().getStorageChannel(IItemStorageChannel.class)); IAEItemStack m = null; if (c != null && result.isSimulation()) { m = o.copy(); o = items.extractItems(o, Actionable.SIMULATE, getActionSource()); if (o == null) { o = m.copy(); o.setStackSize(0); } m.setStackSize(m.getStackSize() - o.getStackSize()); } if (o.getStackSize() > 0) { a.appendItem(o); } if (p.getStackSize() > 0) { b.appendItem(p); } if (c != null && m != null && m.getStackSize() > 0) { c.appendItem(m); } } for (final Object g : listeners) { if (g instanceof EntityPlayer) { ModNetworking.instance().sendTo(a, (EntityPlayerMP) g); ModNetworking.instance().sendTo(b, (EntityPlayerMP) g); if (c != null) { ModNetworking.instance().sendTo(c, (EntityPlayerMP) g); } } } } catch (final IOException e) { // :P } } catch (final Throwable e) { getPlayer().sendMessage(new TextComponentString("Error: " + e.toString())); setValidContainer(false); result = null; } setJob(null); } verifyPermissions(SecurityPermissions.CRAFT, false); } private IGrid getGrid() { final WTIActionHost h = (WTIActionHost) getTarget(); return h.getActionableNode(true).getGrid(); //return obj2.getTargetGrid(); } private boolean cpuMatches(final ICraftingCPU c) { return c.getAvailableStorage() >= getUsedBytes() && !c.isBusy(); } private void sendCPUs() { Collections.sort(cpus); if (getSelectedCpu() >= cpus.size()) { setSelectedCpu(-1); setCpuAvailableBytes(0); setCpuCoProcessors(0); setName(""); } else if (getSelectedCpu() != -1) { setName(cpus.get(getSelectedCpu()).getName()); setCpuAvailableBytes(cpus.get(getSelectedCpu()).getSize()); setCpuCoProcessors(cpus.get(getSelectedCpu()).getProcessors()); } } public void startJob() { int originalGui = 0; final WTIActionHost ah = getActionHost(getGuiObject()); if (ah instanceof WTGuiObject) { originalGui = ModGuiHandler.GUI_WPT; } if (result != null && !isSimulation()) { final ICraftingGrid cc = getGrid().getCache(ICraftingGrid.class); final ICraftingLink g = cc.submitJob(result, null, getSelectedCpu() == -1 ? null : cpus.get(getSelectedCpu()).getCpu(), true, getActionSrc()); setAutoStart(false); if (g != null && originalGui == 0)// && this.getOpenContext() != null ) { ModNetworking.instance().sendTo(new PacketSwitchGuis(originalGui), (EntityPlayerMP) getInventoryPlayer().player); final EntityPlayerMP player = (EntityPlayerMP) getInventoryPlayer().player; final World world = getWorld(); final int x = (int) player.posX; final int y = (int) player.posY; final int z = (int) player.posZ; ModGuiHandler.open(originalGui, player, world, new BlockPos(x, y, z), isBauble, wptSlot); } } } private IActionSource getActionSrc() { return new WTPlayerSource(getPlayerInv().player, (WTIActionHost) getTarget()); } @Override public void removeListener(final IContainerListener c) { super.removeListener(c); if (getJob() != null) { getJob().cancel(true); setJob(null); } } @Override public void onContainerClosed(final EntityPlayer par1EntityPlayer) { super.onContainerClosed(par1EntityPlayer); if (getJob() != null) { getJob().cancel(true); setJob(null); } } public World getWorld() { return getPlayer().getEntityWorld(); } public boolean isAutoStart() { return autoStart; } public void setAutoStart(final boolean autoStart) { this.autoStart = autoStart; } public long getUsedBytes() { return bytesUsed; } private void setUsedBytes(final long bytesUsed) { this.bytesUsed = bytesUsed; } public long getCpuAvailableBytes() { return cpuBytesAvail; } private void setCpuAvailableBytes(final long cpuBytesAvail) { this.cpuBytesAvail = cpuBytesAvail; } public int getCpuCoProcessors() { return cpuCoProcessors; } private void setCpuCoProcessors(final int cpuCoProcessors) { this.cpuCoProcessors = cpuCoProcessors; } public int getSelectedCpu() { return selectedCpu; } private void setSelectedCpu(final int selectedCpu) { this.selectedCpu = selectedCpu; } public String getName() { return myName; } private void setName(@Nonnull final String myName) { this.myName = myName; } public boolean hasNoCPU() { return noCPU; } private void setNoCPU(final boolean noCPU) { this.noCPU = noCPU; } public boolean isSimulation() { return simulation; } private void setSimulation(final boolean simulation) { this.simulation = simulation; } public Future<ICraftingJob> getJob() { return job; } public void setJob(final Future<ICraftingJob> job) { this.job = job; } @Override public void doAction(final EntityPlayerMP player, final InventoryAction action, final int slot, final long id) { } }
26.576832
156
0.688045
728fab4211d05fc879b8b75ee9022ac9571e7318
2,008
package prbm17; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; public class Solution { public static Map<String, List<String>> numMap; static { numMap = new HashMap<String, List<String>>(); numMap.put("2", Arrays.asList("a", "b", "c")); numMap.put("3", Arrays.asList("d", "e", "f")); numMap.put("4", Arrays.asList("g", "h", "i")); numMap.put("5", Arrays.asList("j", "k", "l")); numMap.put("6", Arrays.asList("m", "n", "o")); numMap.put("7", Arrays.asList("p", "q", "r", "s")); numMap.put("8", Arrays.asList("t", "u", "v")); numMap.put("9", Arrays.asList("w", "x", "y", "z")); } /** * improvement: could use numMap as cache! * * @param digits * @return */ public List<String> letterCombinations(String digits) { // System.out.println(numMap); List<String> slist = new ArrayList<String>(); if (digits == null || digits.length() == 0) { return slist; } if (digits.length() == 1) { if (numMap.containsKey(digits)) { return numMap.get(digits); } else { return slist; } } String fst = digits.substring(0, 1); List<String> medlist = letterCombinations(digits.substring(1)); if (!numMap.containsKey(fst)) { return medlist; } List<String> fstlist = numMap.get(fst); for (String s : fstlist) { for (String m : medlist) { slist.add(s + m); } } return slist; } public static void main(String[] args) { Solution s = new Solution(); System.out.println(s.letterCombinations("23")); System.out.println(s.letterCombinations("")); System.out.println(s.letterCombinations("2")); System.out.println(s.letterCombinations("236")); } }
30.892308
71
0.528884
fcb0782e51a447a81f87cae2219e6f2461feb497
2,089
package estoque.controller; import java.io.IOException; import java.io.PrintWriter; import java.sql.SQLException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import estoque.model.Funcionario; import estoque.persistence.FuncionarioDAOImpl; import estoque.persistence.IFuncionarioDAO; @WebServlet("/ControllerFuncionario") public class ServletFuncionario extends HttpServlet { private static final long serialVersionUID = 1L; private IFuncionarioDAO funcDAO = new FuncionarioDAOImpl(); private Funcionario func = new Funcionario(); public ServletFuncionario() { super(); } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("Get"); } protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter out = response.getWriter(); func.setNome(request.getParameter("nome")); func.setCpf(request.getParameter("cpf")); func.setRg(request.getParameter("rg")); func.setTelefone(request.getParameter("telefone")); func.setEmail(request.getParameter("email")); func.setSenha(Integer.parseInt(request.getParameter("senha"))); try { System.out.println("Inserindo Funcionário"); funcDAO.adicionarFuncionario(func); out.print("<script>alert('Funcionário Cadastrado com Sucesso.');" + "location.assign('RetornaFuncionarios')</script>"); } catch (SQLException e) { System.out.println("Ocorreu um Erro SQL:"+e); e.printStackTrace(); } } protected void doDelete(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("Deletando Funcionário"); try { func.setCodigo(Integer.parseInt(request.getParameter("codigo"))); funcDAO.excluirFuncionario(func); } catch (SQLException e) { System.out.println("Ocorreu um Erro SQL:"+e); } } }
33.693548
121
0.770704
1e17b6c86a20e35f4a7ebfa614cee8cd53ae1124
1,699
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jena.sdb.layout1; import org.apache.jena.sdb.StoreDesc ; import org.apache.jena.sdb.core.sqlnode.GenerateSQLOracle ; import org.apache.jena.sdb.layout2.TableDescTriples ; import org.apache.jena.sdb.sql.SDBConnection ; public class StoreSimpleOracle extends StoreBase1 { public StoreSimpleOracle(SDBConnection connection, StoreDesc desc) { this(connection, desc , new TableDescSPO(), new CodecSimple()) ; } private StoreSimpleOracle(SDBConnection connection, StoreDesc desc, TableDescTriples triples, EncoderDecoder codec) { super(connection, desc, new FormatterSimpleOracle(connection) , new TupleLoaderSimple(connection, triples, codec), new QueryCompilerFactory1(codec), new SQLBridgeFactory1(codec), new GenerateSQLOracle(), triples) ; } }
37.755556
119
0.723955
b740594eb2b82155c10222a5d1dfc996e6b7c653
1,482
package io.github.shniu.arts.algothrim.graph; import io.github.shniu.arts.algothrim.graph.sp.DijkstraSP; import org.junit.Test; public class DijkstraSPTest { @Test public void testDijkstra() { Graph graph = new Graph(); Vertex v1 = new Vertex("Node_1", "a"); Vertex v2 = new Vertex("Node_2", "b"); graph.addVertex(v1); graph.addVertex(v2); Vertex v3 = new Vertex("Node_3", "c"); graph.addVertex(v3); Vertex v4 = new Vertex("Node_4", "d"); graph.addVertex(v4); Vertex v5 = new Vertex("Node_5", "e"); graph.addVertex(v5); Vertex v6 = new Vertex("Node_6", "f"); graph.addVertex(v6); Vertex v7 = new Vertex("Node_7", "g"); graph.addVertex(v7); graph.addEdge(new Edge("Edge_1", v1, v2, 5)); graph.addEdge(new Edge("Edge_2", v1, v3, 3)); graph.addEdge(new Edge("Edge_3", v2, v5, 7)); graph.addEdge(new Edge("Edge_4", v3, v4, 2)); graph.addEdge(new Edge("Edge_4", v4, v5, 2)); graph.addEdge(new Edge("Edge_4", v5, v6, 4)); graph.addEdge(new Edge("Edge_4", v5, v7, 5)); graph.addEdge(new Edge("Edge_4", v6, v7, 2)); DijkstraSP dijkstraSP = new DijkstraSP(graph, v1); int dist = dijkstraSP.distTo(v7); System.out.println(dist); assert dist == 12; Iterable<Vertex> iterable = dijkstraSP.pathTo(v7); iterable.forEach(System.out::println); } }
33.681818
58
0.581646
bbb508e142021baabda652e6a1844a825200a1e0
4,031
/* * Copyright 2013-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.cloud.sleuth.instrument.zuul; import com.netflix.client.http.HttpRequest; import com.netflix.zuul.ZuulFilter; import org.apache.http.client.methods.RequestBuilder; import org.springframework.beans.factory.BeanFactory; import org.springframework.boot.autoconfigure.AutoConfigureAfter; import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication; import org.springframework.cloud.netflix.ribbon.support.RibbonRequestCustomizer; import org.springframework.cloud.sleuth.ErrorParser; import org.springframework.cloud.sleuth.instrument.web.HttpSpanInjector; import org.springframework.cloud.sleuth.TraceKeys; import org.springframework.cloud.sleuth.Tracer; import org.springframework.cloud.sleuth.instrument.web.HttpTraceKeysInjector; import org.springframework.cloud.sleuth.instrument.web.TraceWebServletAutoConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import okhttp3.Request; /** * {@link org.springframework.boot.autoconfigure.EnableAutoConfiguration Auto-configuration} * enables span information propagation when using Zuul. * * @author Dave Syer * @since 1.0.0 */ @Configuration @ConditionalOnProperty(value = "spring.sleuth.zuul.enabled", matchIfMissing = true) @ConditionalOnWebApplication @ConditionalOnClass(ZuulFilter.class) @ConditionalOnBean(Tracer.class) @AutoConfigureAfter(TraceWebServletAutoConfiguration.class) public class TraceZuulAutoConfiguration { @Bean @ConditionalOnMissingBean public TracePreZuulFilter tracePreZuulFilter(Tracer tracer, HttpSpanInjector spanInjector, HttpTraceKeysInjector httpTraceKeysInjector, ErrorParser errorParser) { return new TracePreZuulFilter(tracer, spanInjector, httpTraceKeysInjector, errorParser); } @Bean @ConditionalOnMissingBean public TracePostZuulFilter tracePostZuulFilter(Tracer tracer, TraceKeys traceKeys) { return new TracePostZuulFilter(tracer, traceKeys); } @Bean public TraceRibbonCommandFactoryBeanPostProcessor traceRibbonCommandFactoryBeanPostProcessor(BeanFactory beanFactory) { return new TraceRibbonCommandFactoryBeanPostProcessor(beanFactory); } @Bean @ConditionalOnClass(name = "com.netflix.client.http.HttpRequest.Builder") public RibbonRequestCustomizer<HttpRequest.Builder> restClientRibbonRequestCustomizer(Tracer tracer) { return new RestClientRibbonRequestCustomizer(tracer); } @Bean @ConditionalOnClass(name = "org.apache.http.client.methods.RequestBuilder") public RibbonRequestCustomizer<RequestBuilder> apacheHttpRibbonRequestCustomizer(Tracer tracer) { return new ApacheHttpClientRibbonRequestCustomizer(tracer); } @Bean @ConditionalOnClass(name = "okhttp3.Request.Builder") public RibbonRequestCustomizer<Request.Builder> okHttpRibbonRequestCustomizer(Tracer tracer) { return new OkHttpClientRibbonRequestCustomizer(tracer); } @Bean public TraceZuulHandlerMappingBeanPostProcessor traceHandlerMappingBeanPostProcessor(BeanFactory beanFactory) { return new TraceZuulHandlerMappingBeanPostProcessor(beanFactory); } }
40.717172
120
0.834036
a1b34e6b10f13393b97362d2f539e0dfd95596ee
1,993
package cn.lueans.lueansread.mvp.presenter; import android.util.Log; import java.util.concurrent.TimeUnit; import cn.lueans.lueansread.entity.GankBean; import cn.lueans.lueansread.mvp.contract.GankContract; import cn.lueans.lueansread.mvp.model.GankModelImpl; import rx.Observable; import rx.android.schedulers.AndroidSchedulers; import rx.functions.Action1; /** * Created by 24277 on 2017/02/23 */ public class GankPresenterImpl implements GankContract.Presenter, GankContract.Model.LoadListener { private static final String TAG = "GankPresenterImpl"; private GankModelImpl mGankModel; private GankContract.View mView; public GankPresenterImpl(GankContract.View view) { mView = view; mGankModel = new GankModelImpl(); } public void getGankDataFromInternet(boolean isTop, String type, int number, int page) { Log.i(TAG, "getGankDataFromInternet: -----------------------------"); mGankModel.setNetListener(this); mGankModel.getGankDataFromInternet(isTop, type, number, page); } @Override public void getGankDataFromDB(String type) { } @Override public void deleteDataToDB(String type) { } @Override public void onSuccess(boolean isTop, GankBean data) { Log.i(TAG, "onSuccess: ----------------------------------"); if (isTop) { mView.setRefreshData(data); } else { mView.setMoreGankData(data); } Observable.timer(2, TimeUnit.SECONDS) .observeOn(AndroidSchedulers.mainThread()) .subscribe(new Action1<Long>() { @Override public void call(Long aLong) { mView.hideLoading(); } }); } @Override public void onError(final Exception e) { mView.hideLoading(); mView.showError(e); } public void unSubscribe(){ this.mGankModel.unSubscribe(); } }
28.070423
99
0.623181
17f580dc2420f63bc1de8644cd9b0c2017d9221d
1,181
package com.lzw.spark.DBManager.Resource; import com.lzw.spark.DBManager.Tools.PackageUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.HashMap; import java.util.List; import java.util.Map; /** * Created by lzw on 16-6-3. */ /** * 为所有Service类创建实例,实现Service类的单例模式 */ public class ServiceMaintainer { private static Map<Class,Object> services; private static String packageName = "com.lzw.spark.DBManager.Service"; private static Logger log = LoggerFactory.getLogger(ServiceMaintainer.class); public static synchronized Object getServices(Class cls) { if(services == null) { services = new HashMap<>(); List<String> classes = PackageUtils.getClassNameByPackage(packageName); for(String str : classes) { try { Class c = Class.forName(str); services.put(c,c.newInstance()); } catch (Exception ex) { log.error("Can not find class "+str); } } } return services.get(cls); } }
26.244444
83
0.580864
01b426e64ece66aaf9bb8dc99c3370a170ea931c
6,723
class vPIvn_Y6o { } class v0qYim { public int[][] NJrG4QrFl5kDJk; public D[][] QVRf; public rJCzLs3Zydo_3[] Rz () throws H0zbk6JE { void O775C67dtoML = true.owdPd1uxbT(); int GDY8sCjFWYXQFQ; lBAvQE08gzm7m[] B8TQIs1qN4 = !-this.bKlnkjCZpQD(); qqQ5Gur[] IrrjlVzfp87XN; boolean r = -!ND()[ !null.P0p] = new k7[ this[ DoTs_4THcrEfap._F1K_]][ --( --!!new pOGg7HqH0().XEYRczUG_8Yi()).m]; boolean[] o = null.SPBqvAUGK; boolean[] It_YZtAnHc; int[] y = -new void[ ( ( IXA8ELq().uAM9())[ --43571287.S])[ -new CbVTqC().AouTAo()]].p9r_5(); } public int[] RPLM0UvnAK7V; public static void zX2sHVYRQ (String[] M) { CKgYdx1BwP2[] QncPWcxX; bbn q = EHKIvH9()[ new seFP()[ ( -qh().XOWPHCpGKtJvYc()).Wf]]; int[] tJEI9nifgHA = --!( !-p9[ -!--UDn6TRgGLi.tLYog])[ !!-hI1CnTIUWQgde[ ( !-false[ !null[ -!!null[ null.yl()]]]).bdaJFwAqLXoiya()]]; if ( false.Ixe81raZxqcS()) while ( !true.K) if ( !null.x0Jgf0iUXZ) ; if ( !!!new ggLlma().fhn6_hgpiT_GX) { if ( 75[ !new boolean[ !false.uy6][ --!!!null.fqm()]]) ; }else if ( ( !!( 928461.C0EiqjnYP)[ new int[ CoQ5DPFR1R().Z3iprsC8DjfTcy].KV8PUAo()]).S8nNDX) return; boolean[] UIU = !!true[ !false[ this[ -bm3q.z()]]] = xnR66QGvbJm().TjGNu3T0ovwUB7; if ( null.R8XAy) if ( dl().z_gq) { { J1SFxxbWs[] WAHaooV_5; } }else ; void[] D; boolean omK = false.lGXTpNYHtWf50() = this.n1pkJ; void[] DGxHhZtPuxq_Q5; v PEW8D0 = !new boolean[ ( new ja8HSmax4BB().ysAnJpDf()).eDs].Npe; boolean[] Eh6tOT97NXJ = -nQahrVBeV4[ null.aw]; void E; ZGZvvBeNUMes[][] K133CnRt = 99.CR8() = ---false[ !!!Nc.E()]; while ( !this.unu1tB2z7nzxFg) { { ; } } p91M8WyFgdNm zUS5; } public int[] LZvDPq17 () { int m07 = -new int[ TCqv0VIt1y().cwEs2ThfPyQI()][ 22468.E7mFZkGU07Tlzb] = NcunnamQkcV7l.z_(); !-!-LV3RRRpm3UblG1.ghM3Z2(); if ( ( ( new void[ !qlhuTDBm()[ -this.obPmHlal6E()]][ new I46qCDwIUZMag()[ new ZJFmP().KT]])[ !29916204.pRbNxTw])[ -!!new H88ovy()[ !false.D()]]) { { int[] ats9BJ9qOoUz; } }else new J().xdCx; if ( ---SyET1plqg.HHpAi64Gx) if ( new SQwTE9k6T[ true.W7jIEH].M) return;else ; while ( -( 8329979.RiAQQhOaV()).kOvg8kbRz4n_()) ; void ZD38urHg = -!( !-new Afmgshq[ new Q4()[ !!Umw().YG9oBOSLuK()]][ -this.LAtmh9DJMqz8hp()]).njS120() = !2659.RcJgHWofyVN(); return t3C8SB.XXHuA1fnhat(); _C92n6seFHAW5d[][][][] KXQOF = this[ !NozQr_h7r8[ !--FBlwauneE6.zHg99sfElss()]]; int[][] zNcY = this[ !!this[ !false.ECuN4N()]] = true[ ptpyr()[ new void[ !!!-null.EWilDZM1][ ---!false[ true.mNon_K()]]]]; m1qjwHp VkyH3R0 = !--!!QgmbaBOEaw4().Y6OlyWDZTDgKj() = --null.W3ReOfxiFLLli6(); while ( new boolean[ -new HslR().pHqeFQRgX].bW0Z4G) ; boolean xVkclA4xy1C; return; while ( Oux4ziGn()[ 902.qrg34pzEpbt]) this[ -!---!null.Ba]; --this.hl5IvPa8FxicnK(); UdlWkunCiS[][] TqSDdxd = -true.wzNcoFlHq6v; { !!new LyBKePHbpu1().LPv; return; null[ this.WLfo]; boolean iwL3Sn4Ni; { if ( -pideNJR[ null.qftlmLY1S_5S7]) { int[] ihx5eJEBRDJmLf; } } !true.JaYgo(); if ( -!true._RM0qHka4p61Ke()) while ( ( ( --6.h())[ !-false[ !-!new void[ -!null.KjN5CtY1A5woB].TkylTD3q()]])[ -( --!-!!this._CILwzOY).HtGAxJK4p()]) ; int[] s; i[] MS8DR9Wa8z; int ssV573JFKP; void qGh12; int jj4rIIiK09oWVu; } void KCiyQrJvdD3eD = !!-null.HOJ = new LKjkZGvMu().NX5WaXy4Dj3J(); return; if ( 5579185.VKZw) return; } public static void qiTHaS6OLR (String[] Ju) throws p { boolean[][] p9r9bn = ( !-( -this[ new __EL_49Ub().EEeOPNIyM()]).fyPhl4Zwu3Cxm9).n3DYzNvu(); } public boolean Un0lBc2Duh7; public void uhtR; public static void Wqx5W_Y (String[] atJdMT0mqjYHwG) { int dW; boolean[] jncCJr = null[ -!true.g()]; int[][][][] rNxMRBWp; int I = new FUzAGAZ0N1E().WFZ; } public static void t2U (String[] pXI0i6av) throws XiJkoobNu0 { while ( GBKHT4Gq2e()[ !-!!true.zSTVCBPdAftd5m]) if ( --false.B1sy()) while ( 0204640.qi()) if ( ( MuoEfd().uYoQO5dX1Ium)[ -true[ false.IZXjBX39ZDmghb()]]) ; boolean[][] d1I4MxdNQtq3m0 = EJXIo_CbvI()[ !( ----null.ta_C())[ !!-iAIbX0.kYTHrKYh_]] = true.XuEotYpw0M8; void PucalOlR; boolean[] qAL6QzvwIiq; void[] ZAnSAhjslBaY; int AcxLK; ; while ( false.DtBpa) return; xTiRdLzNaxyK[] HW = 868974.hSzBvk3Q() = ---true.GcwoskUALDy4u; { while ( !-null.R) ; int z; int eXOLArDMw_7; w4fcIo[][] dchW; if ( !!--new boolean[ ( -947389005[ null.jyVY]).HIdkIlag].joWfaEuOzld2) ; int _yGIyRIq9onP; void[] MWB; int T; int[][] zjD; return; { boolean[] dSogjYTEhB; } while ( null.DynZH137muRc()) return; { { void[] mUT1_vcGfIFm; } } SziVmld fYncU35; null.EsyKM8nDJXuP; ; ewxQLbjsq BHgqKcmWvALPL; } false.A4z7M7qra4(); } public static void _9LkZM (String[] oH_u1AlbliCG) throws u { int[] mlpBoAQj1s3s; while ( 127[ new boolean[ 9164.iqJoXN()].Q29Tng()]) true.hD; int oVn = -( -new yZg_0q[ this.G].OF2qStWiVyX)[ iAtOfXH.UlA7()] = new iPWMdbDYr6oKb().ezm; v[][][][][][] pA; void[] i = false._(); if ( 81056700.MIg8Nbx3H) !new TgutB7kYaL3F()[ -!9329[ false[ -this.X_1xxACMiT6_()]]];else if ( -null[ -!new void[ ( ZeDMUDVRa4KPrZ().NpIuJgslXxjMPx).Yshco].j9SFotnI]) { void kz; } } public int[][] IqPa8hLya () throws x7g { { int[] kCWI7mbRXFp; } if ( -60747.ZX()) this.CDlnOx7F(); boolean woCM = -false.ErIGYpv8z3; void fgLYPD9plyATJT; while ( !w()[ -false.HMY4GaLC()]) if ( -!-( new boolean[ false.liej0I0ZtsN1].uhjuumbOhvhR2).Dd5gKPHHrG2S_) -this.YCOZYFZY7n; } public void TWJ7BuuvBp1A; public static void r25cIKAG5IG (String[] VxaMi9zFIaW) { int z = !null.ghT82IQ = this[ PgPtH3V.Tr0iF6B6iGd_R_()]; } }
41.5
178
0.521196
8726ea2af618f141ef3a266f5e62240019f6acd0
2,685
package metabase.db.liquibase; import java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.stream.Collectors; import liquibase.database.Database; import liquibase.database.core.MySQLDatabase; import liquibase.exception.ValidationErrors; import liquibase.sql.Sql; import liquibase.sql.UnparsedSql; import liquibase.sqlgenerator.SqlGeneratorChain; import liquibase.sqlgenerator.core.AbstractSqlGenerator; import liquibase.sqlgenerator.core.CreateTableGenerator; import liquibase.statement.core.CreateTableStatement; import liquibase.structure.DatabaseObject; // This class is a simple wrapper around a CreateTableGenerator that appends ENGINE InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci to the generated SQL public class MetabaseMySqlCreateTableSqlGenerator extends AbstractSqlGenerator<CreateTableStatement> { private CreateTableGenerator parentGenerator; public MetabaseMySqlCreateTableSqlGenerator() { this.parentGenerator = new CreateTableGenerator(); } @Override public boolean supports(CreateTableStatement statement, Database database) { return parentGenerator.supports(statement, database) && (database instanceof MySQLDatabase); } @Override public int getPriority() { return parentGenerator.getPriority() + 1; } @Override public Sql[] generateSql(CreateTableStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) { // it seems like Liquibase actually ignores the `defaultValueComputed` // that we set in the migrations YAML file -- see // https://stackoverflow.com/questions/58816496/force-liquibase-to-current-timestamp-instead-of-now database.setCurrentDateTimeFunction("current_timestamp(6)"); Sql[] sqls = this.parentGenerator.generateSql(statement, database, sqlGeneratorChain); for (int i = 0; i < sqls.length; i++) { Sql sql = sqls[i]; if (!sql.toSql().startsWith("CREATE TABLE")) continue; Collection<? extends DatabaseObject> affectedObjects = sql.getAffectedDatabaseObjects(); sqls[i] = new UnparsedSql(sql.toSql() + " ENGINE InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci", sql.getEndDelimiter(), affectedObjects.toArray(new DatabaseObject[affectedObjects.size()])); } return sqls; } @Override public ValidationErrors validate(CreateTableStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) { return this.parentGenerator.validate(statement, database, sqlGeneratorChain); } }
42.619048
160
0.738175
21910119ccb8f2d8fe7faf312c53293f8bbcd279
1,272
package com.cleverbuilder.cameldemos.spring.routing; import org.apache.camel.EndpointInject; import org.apache.camel.Exchange; import org.apache.camel.ProducerTemplate; import org.apache.camel.component.mock.MockEndpoint; import org.apache.camel.test.junit4.TestSupport; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.concurrent.TimeUnit; /** * Created by tdonohue on 19/02/2018. */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration public class SpringFileToSimpleCbr extends TestSupport { @Autowired protected ProducerTemplate template; @Before public void setUp() throws Exception { deleteDirectory("target/files"); } @Test public void testProcess() throws Exception { template.sendBodyAndHeader("file:target/files/input", "Cilla Black", Exchange.FILE_NAME, "artist.txt"); // Give the route enough time to process the file Thread.sleep(2000L); assertFileExists("target/files/output/cilla_black/artist.txt"); } }
29.581395
76
0.758648
c247555def1cf92a7094e8e8d29b9da5f915d7b4
1,185
package com.kwpugh.mining_dims.mixin; import com.kwpugh.mining_dims.init.MiningDimsRegistry; import net.minecraft.entity.EntityType; import net.minecraft.entity.attribute.EntityAttributes; import net.minecraft.entity.passive.AnimalEntity; import net.minecraft.entity.passive.GoatEntity; import net.minecraft.util.registry.RegistryKey; import net.minecraft.world.World; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; @Mixin(GoatEntity.class) public abstract class GoatEntityMixin extends AnimalEntity { public GoatEntityMixin(EntityType<? extends AnimalEntity> entityType, World world) { super(entityType, world); } @Inject(method="onGrowUp",at=@At("TAIL"),cancellable = true) private void miningDimsOnGrowUp(CallbackInfo ci) { RegistryKey<World> registryKey = world.getRegistryKey(); if(registryKey == MiningDimsRegistry.MININGDIMS_WORLD_KEY5) { this.getAttributeInstance(EntityAttributes.GENERIC_ATTACK_DAMAGE).setBaseValue(6.0D); } } }
37.03125
97
0.775527
bed12fb55131229c2e520d9522df316f5d967599
3,883
package com.integral.enigmaticlegacy.crafting; import com.google.gson.JsonArray; import com.google.gson.JsonObject; import com.google.gson.JsonParseException; import net.minecraft.inventory.CraftingInventory; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.IRecipeSerializer; import net.minecraft.item.crafting.Ingredient; import net.minecraft.item.crafting.ShapedRecipe; import net.minecraft.item.crafting.ShapelessRecipe; import net.minecraft.network.PacketBuffer; import net.minecraft.util.JSONUtils; import net.minecraft.util.NonNullList; import net.minecraft.util.ResourceLocation; /** * A copy of regular Shapeless Recipe, but any container items * are destroyed instead of remaining in a crafting grid. * @author Integral */ public class ShapelessNoReturnRecipe extends ShapelessRecipe { private final String group; private final ItemStack recipeOutput; private final NonNullList<Ingredient> recipeItems; public ShapelessNoReturnRecipe(ResourceLocation id, String group, ItemStack output, NonNullList<Ingredient> inputs) { super(id, group, output, inputs); this.group = group; this.recipeOutput = output; this.recipeItems = inputs; } @Override public NonNullList<ItemStack> getRemainingItems(CraftingInventory inv) { NonNullList<ItemStack> nonnulllist = NonNullList.withSize(inv.getSizeInventory(), ItemStack.EMPTY); return nonnulllist; } @Override public IRecipeSerializer<?> getSerializer() { return EnigmaticRecipeSerializers.SHAPELESS_NO_RETURN; } public static class Serializer extends net.minecraftforge.registries.ForgeRegistryEntry<IRecipeSerializer<?>> implements IRecipeSerializer<ShapelessNoReturnRecipe> { public ShapelessNoReturnRecipe read(ResourceLocation recipeId, JsonObject json) { String s = JSONUtils.getString(json, "group", ""); NonNullList<Ingredient> nonnulllist = readIngredients(JSONUtils.getJsonArray(json, "ingredients")); if (nonnulllist.isEmpty()) { throw new JsonParseException("No ingredients for shapeless recipe"); } else if (nonnulllist.size() > 3 * 3) { throw new JsonParseException("Too many ingredients for shapeless recipe the max is " + (3 * 3)); } else { ItemStack itemstack = ShapedRecipe.deserializeItem(JSONUtils.getJsonObject(json, "result")); return new ShapelessNoReturnRecipe(recipeId, s, itemstack, nonnulllist); } } private static NonNullList<Ingredient> readIngredients(JsonArray p_199568_0_) { NonNullList<Ingredient> nonnulllist = NonNullList.create(); for(int i = 0; i < p_199568_0_.size(); ++i) { Ingredient ingredient = Ingredient.deserialize(p_199568_0_.get(i)); if (!ingredient.hasNoMatchingItems()) { nonnulllist.add(ingredient); } } return nonnulllist; } public ShapelessNoReturnRecipe read(ResourceLocation recipeId, PacketBuffer buffer) { String s = buffer.readString(32767); int i = buffer.readVarInt(); NonNullList<Ingredient> nonnulllist = NonNullList.withSize(i, Ingredient.EMPTY); for(int j = 0; j < nonnulllist.size(); ++j) { nonnulllist.set(j, Ingredient.read(buffer)); } ItemStack itemstack = buffer.readItemStack(); return new ShapelessNoReturnRecipe(recipeId, s, itemstack, nonnulllist); } @Override public void write(PacketBuffer buffer, ShapelessNoReturnRecipe recipe) { buffer.writeString(recipe.group); buffer.writeVarInt(recipe.recipeItems.size()); for(Ingredient ingredient : recipe.recipeItems) { ingredient.write(buffer); } buffer.writeItemStack(recipe.recipeOutput); } } }
37.699029
166
0.704352
bd30a58366e55a87b32e23bf5fcc2a8c1f9af0a0
406
package io.nutz.nutzsite.module.sys.services; import io.nutz.nutzsite.common.base.Service; import org.nutz.dao.Dao; import org.nutz.ioc.loader.annotation.IocBean; import io.nutz.nutzsite.module.sys.models.Dict; /** * 字典 服务层实现 * * @author haiming * @date 2019-04-16 */ @IocBean(args = {"refer:dao"}) public class DictService extends Service<Dict> { public DictService(Dao dao) { super(dao); } }
20.3
48
0.724138
20c32ebab13a690909f33ddf3bf449564c2e541e
20,193
package org.hadatac.entity.pojo; import java.util.*; import org.hadatac.entity.pojo.Measurement; import org.hadatac.entity.pojo.STR; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Alignment { private static final Logger log = LoggerFactory.getLogger(Alignment.class); private static Set<String> errMsgs = new HashSet<>(); private Map<String, StudyObject> objects; //private List<String> timestamps; private Map<String, StudyObject> refObjects; /* * key for attributeListCache is the outcome of calling getAttributeUris(List<Attribute> attrList) */ private Map<String, List<Attribute>> attributeListCache; private Map<String, Attribute> attrCache; private Map<String, Entity> entityCache; private Map<String, Unit> unitCache; private Map<String, AlignmentEntityRole> roles; private Map<String, Variable> variables; private Map<String, List<String>> hCodeBook; private Map<String, String> studyId; // key=socUri; value=studyId private Map<String, STR> dataAcquisitions; List<Attribute> ID_LIST = new ArrayList<Attribute>(); AttributeInRelationTo ID_IRT = new AttributeInRelationTo(ID_LIST, null); //List<Attribute> GROUPID_LIST = new ArrayList<Attribute>(); //AttributeInRelationTo GROUPID_IRT = new AttributeInRelationTo(GROUPID_LIST, null); public Alignment() { objects = new HashMap<String, StudyObject>(); //timestamps = new ArrayList<String>(); attributeListCache = new HashMap<String, List<Attribute>>(); attrCache = new HashMap<String, Attribute>(); entityCache = new HashMap<String, Entity>(); unitCache = new HashMap<String, Unit>(); roles = new HashMap<String, AlignmentEntityRole>(); variables = new HashMap<String, Variable>(); hCodeBook = new HashMap<String, List<String>>(); studyId = new HashMap<String,String>(); dataAcquisitions = new HashMap<String,STR>(); Attribute ID = new Attribute(); ID.setLabel("ID"); ID_LIST.add(ID); //Attribute GROUPID = new Attribute(); //GROUPID.setLabel("GROUPID"); //GROUPID_LIST.add(GROUPID); } public void printAlignment() { System.out.println("Alignment Content: "); if (variables != null && variables.size() > 0) { for (Variable aa : variables.values()) { System.out.println("Label: " + aa); } } } public static String getUrisFromAttributeList(List<Attribute> attrList) { if (attrList == null) { return ""; } String attributeUri = ""; for (Attribute attr : attrList) { attributeUri = attributeUri + attr.getUri(); } return attributeUri; } public static String getUrisFromStringList(List<String> attrListUri) { if (attrListUri == null) { return ""; } String attributeUri = ""; for (String attrUri : attrListUri) { attributeUri = attributeUri + attrUri; } return attributeUri; } /* * objectKey adds a new object identifier into variables */ public String objectKey(AlignmentEntityRole entRole) { Variable aa = new Variable(entRole, ID_IRT); return aa.toString(); } /* * groupKey adds a new group identifier into variables */ /* public String groupKey(AlignmentEntityRole entRole) { Variable aa = new Variable(entRole, GROUPID_IRT); return aa.toString(); } */ /* * returns a key to retrieve variables. if needed, measuremtnKey adds new variables */ public String measurementKey(Measurement m) { if (variables == null) { System.out.println("[ERROR] Alignment: alignment attribute list not initialized "); return null; } /* * Look for existing variables */ //System.out.println("Align-Debug: Measurement Key"); Entity irt = null; String mInRelationTo = ""; if (m.getInRelationToUri() != null && !m.getInRelationToUri().equals("")) { irt = entityCache.get(m.getInRelationToUri()); if (irt != null && irt.getUri().equals(m.getInRelationToUri())) { mInRelationTo = irt.getUri(); } else { irt = Entity.facetSearchFind(m.getInRelationToUri()); if (irt == null) { System.out.println("[ERROR] Alignment: retrieving entity playing inRelationTo " + m.getInRelationToUri()); } else { entityCache.put(irt.getUri(),irt); mInRelationTo = m.getInRelationToUri(); } } } Unit unit = null; String mUnit = ""; if (m.getUnitUri() != null && !m.getUnitUri().equals("")) { unit = unitCache.get(m.getUnitUri()); if (unit != null && unit.getUri().equals(m.getUnitUri())) { mUnit = unit.getUri(); } else { unit = Unit.facetSearchFind(m.getUnitUri()); if (unit == null) { StringBuffer sb = new StringBuffer(); sb.append("[ERROR] Alignment: could not retrieve unit [").append(m.getUnitUri()).append("]. Ignoring unit."); if ( errMsgs.contains(sb.toString()) == false ) { log.error(sb.toString()); errMsgs.add(sb.toString()); } } else { unitCache.put(unit.getUri(),unit); mUnit = m.getUnitUri(); } } } Attribute timeAttr = null; String mAbstractTime = ""; if (m.getAbstractTime() != null && !m.getAbstractTime().equals("")) { timeAttr = attrCache.get(m.getAbstractTime()); if (timeAttr != null && timeAttr.getUri().equals(m.getAbstractTime())) { mAbstractTime = timeAttr.getUri(); } else { timeAttr = Attribute.facetSearchFind(m.getAbstractTime()); if (timeAttr == null) { System.out.println("[ERROR] Alignment: could not retrieve abstract time [" + m.getAbstractTime() + "]. Ignoring abstract time."); } else { attrCache.put(timeAttr.getUri(),timeAttr); mAbstractTime = m.getAbstractTime(); } } } if (!dataAcquisitions.containsKey(m.getAcquisitionUri())) { //System.out.println("getDOI(): adding da " + m.getAcquisitionUri()); STR da = STR.findByUri(m.getAcquisitionUri()); dataAcquisitions.put(m.getAcquisitionUri(), da); } String mRole = m.getRole().replace(" ",""); String mKey = null; if (m.getCategoricalClassUri() != null && !m.getCategoricalClassUri().isEmpty()) { mKey = mRole + m.getEntityUri() + m.getCategoricalClassUri() + mInRelationTo + mUnit + mAbstractTime; } else { String attributeUris = ""; for (String attrUri : m.getCharacteristicUris()) { attributeUris = attributeUris + attrUri; } mKey = mRole + m.getEntityUri() + attributeUris + mInRelationTo + mUnit + mAbstractTime; } //System.out.println("Align-Debug: Measurement: " + mKey); if (variables.containsKey(mKey)) { return variables.get(mKey).toString(); } /* * create new variable */ Variable newVar; Entity entity = entityCache.get(m.getEntityUri()); if (entity == null || !entity.getUri().equals(m.getEntityUri())) { entity = Entity.facetSearchFind(m.getEntityUri()); if (entity == null) { System.out.println("[ERROR] Alignment: retrieving entity " + m.getEntityUri()); return null; } else { entityCache.put(entity.getUri(),entity); } } //System.out.println("Align-Debug: new alignment attribute"); AlignmentEntityRole newRole = new AlignmentEntityRole(entity,mRole); //System.out.println("Align-Debug: new alignment characteristic: [" + m.getCharacteristicUris().get(0) + "]"); Attribute attribute = null; List<Attribute> attributeList = null; // Attribute List has only one entry that is the Categorical Class if (m.getCategoricalClassUri() != null && !m.getCategoricalClassUri().isEmpty()) { //System.out.println("Align-Debug: new alignment Categorical Class [" + m.getCategoricalClassUri() + "]"); attributeList = attributeListCache.get(m.getCategoricalClassUri()); if (attributeList != null && attributeList.size() > 0) { attribute = attributeList.get(0); } if (attribute == null || !attribute.getUri().equals(m.getCategoricalClassUri())) { attribute = attrCache.get(m.getCategoricalClassUri()); if (attribute == null) { attribute = Attribute.facetSearchFind(m.getCategoricalClassUri()); if (attribute == null) { System.out.println("[ERROR] Alignment: retrieving attribute " + m.getCategoricalClassUri()); return null; } attrCache.put(attribute.getUri(), attribute); } attributeList = new ArrayList<Attribute>(); attributeList.add(attribute); attributeListCache.put(attribute.getUri(), attributeList); } //System.out.println("Align-Debug: attribute list is for categorical variable"); } // Attribute List may have one or more elements else { //System.out.println("Align-Debug: new alignment Non-CategoricalClass ]"); attributeList = attributeListCache.get(getUrisFromStringList(m.getCharacteristicUris())); //System.out.println("Align-Debug: Characteristic URIs are [" + getUrisFromStringList(m.getCharacteristicUris()) + "]"); //System.out.println("Align-Debug: Attribute List URIs are [" + getUrisFromAttributeList(attributeList) + "]"); if (attributeList == null || !getUrisFromAttributeList(attributeList).equals(getUrisFromStringList(m.getCharacteristicUris()))) { attributeList = new ArrayList<Attribute>(); for (String attrUri : m.getCharacteristicUris()) { attribute = attrCache.get(attrUri); if (attribute == null) { attribute = Attribute.facetSearchFind(attrUri); if (attribute == null) { System.out.println("[ERROR] Alignment: retrieving attribute " + attrUri); return null; } attrCache.put(attribute.getUri(), attribute); } attributeList.add(attribute); } attributeListCache.put(getUrisFromAttributeList(attributeList),attributeList); } //System.out.println("Align-Debug: attribute list is for non-categorical variable"); } /* System.out.print("Align-Debug: attributeList is ["); for (Attribute attr : attributeList) { if (attr != null && attr.getLabel() != null) { System.out.print(attr.getLabel() + " "); } } System.out.println("]"); System.out.println("Align-Debug: itr is [" + irt + "]"); */ /* if (!mInRelationTo.equals("")) { System.out.println("Adding the following inRelationTo " + mInRelationTo); }*/ AttributeInRelationTo newAttrInRel = new AttributeInRelationTo(attributeList, irt); /* if (!mUnit.equals("")) { System.out.println("Adding the following unit " + mUnit); }*/ /* if (!mAbstractTime.equals("")) { System.out.println("Adding the following time " + mAbstractTime); }*/ newVar = new Variable(newRole, newAttrInRel, unit, timeAttr); //System.out.println("Align-Debug: new alignment attribute 3"); //System.out.println("Align-Debug: new variable's key: [" + newVar.getKey() + "]"); if (!variables.containsKey(newVar.getKey())) { variables.put(newVar.getKey(), newVar); //System.out.println("Align-Debug: adding new var to variable's list"); } return newVar.toString(); } /* ========================================== * * GRAPH OPERATIONS * ========================================== */ public static List<String> alignmentObjects(String currentObj, String targetType) { // for now, targetType == hasco:SubjectGroup. Eventually, this should be something coming from GUI selection List<String> alignObjs = new ArrayList<String>(); if (currentObj == null || currentObj.isEmpty() ) { log.debug("Current Obj or Selected Role are empty"); return alignObjs; } // Test if the current object is already the alignment object if ( StudyObject.checkSocType(currentObj, targetType) ) { alignObjs.add(currentObj); log.debug("Already ALIGNMENT object"); return alignObjs; }; /* * Test if alignment object is upstream */ List<Map<String,String>> upstream = StudyObject.findUpstreamSocs(currentObj); if (upstream.size() > 0) { // iteration and stop if soctype == targetType for (Map<String,String> socRoleTuple : upstream) { Iterator<Map.Entry<String, String>> itr = socRoleTuple.entrySet().iterator(); if (itr.hasNext()) { Map.Entry<String, String> entry = itr.next(); if ( targetType.contains(entry.getValue()) ) { alignObjs.add(entry.getKey()); //System.out.println("Align-Debug: UPSTREAM object"); return new ArrayList<>(new HashSet<>(alignObjs)); } } } } // Test if alignment object(s) is(are) downstream List<String> downstream = StudyObject.findDownstreamSocs(currentObj, targetType); if ( downstream.size() > 1) { System.out.println(String.format("ERROR: for %s, more than 1 aligned subjects have been found.", currentObj)); return alignObjs; } if ( downstream.size() == 1 ) { alignObjs.add(downstream.get(0)); return new ArrayList<>(new HashSet<>(alignObjs)); } // Test if alignment object(s) is(are) downstream from some upstream object if (upstream.size() > 0) { for (Map<String,String> tuple : upstream) { Iterator<Map.Entry<String, String>> itr = tuple.entrySet().iterator(); if (itr.hasNext()) { Map.Entry<String, String> entry = itr.next(); String upstreamObj = entry.getKey(); List<String> downstreamFromUpstream = StudyObject.findDownstreamSocs(upstreamObj, targetType); if ( downstreamFromUpstream.size() > 1) { System.out.println(String.format("ERROR: for %s, more than 1 aligned subjects have been found.", upstreamObj)); continue; } if ( downstreamFromUpstream.size() == 1 ) { alignObjs.add(downstreamFromUpstream.get(0)); return new ArrayList<>(new HashSet<>(alignObjs)); } } // end of hasNext() } // end of upstream role map } System.out.println("[ERROR] Alignment: COULD NOT FIND alignment object for [" + currentObj + "]"); return alignObjs; } public static List<String> alignmentObjectsWithSubjectGroupMembership(String currentObj, String studyUri) { //System.out.println("Align-Debug: Current Object [" + currentObj + "]"); return StudyObject.getAlignmentBySubjectGroupMembership(currentObj, studyUri); } /* ------------------------------------------ * * CONTAINS METHODS * ------------------------------------------ */ public boolean containsObject(String uri) { return objects.containsKey(uri); } //public boolean containsTimestamp(String timestamp) { // return timestamp.contains(timestamp); //} public boolean containsEntity(String uri) { return entityCache.containsKey(uri); } public boolean containsRole(String key) { return roles.containsKey(key); } public boolean containsCode(String uri) { return hCodeBook.containsKey(uri); } /* ------------------------------------------ * * GET INDIVIDUAL METHODS * ------------------------------------------ */ public StudyObject getObject(String uri) { return objects.get(uri); } public Entity getEntity(String uri) { return entityCache.get(uri); } public AlignmentEntityRole getRole(String key) { return roles.get(key); } public List<String> getCode(String key) { return hCodeBook.get(key); } public Map<String, List<String>> getCodeBook() { return hCodeBook; } public String getStudyId(String uri) { return studyId.get(uri); } /* GET LIST METHODS */ public List<StudyObject> getObjects() { return new ArrayList<StudyObject>(objects.values()); } //public List<String> getTimestamps() { // return timestamps; //} public List<AlignmentEntityRole> getRoles() { return new ArrayList<AlignmentEntityRole>(roles.values()); } public List<Variable> getAlignmentAttributes() { return new ArrayList<Variable>(variables.values()); } public List<List<String>> getCodes() { return new ArrayList<List<String>>(hCodeBook.values()); } public List<String> getDOIs() { List<String> resp = new ArrayList<String>(); if (dataAcquisitions.size() == 0) { return resp; } //System.out.println("getDOI(): da size is " + dataAcquisitions.size()); for (Map.Entry<String,STR> entry : dataAcquisitions.entrySet()) { org.hadatac.entity.pojo.STR da = entry.getValue(); //System.out.println("getDOI(): da is " + da.getUri()); for (String doi : da.getDOIs()) { //System.out.println("getDOI(): doi is " + doi); resp.add(doi); } } return resp; } /* ADD METHODS */ public void addObject(StudyObject obj) { objects.put(obj.getUri(), obj); if (!studyId.containsKey(obj.getIsMemberOf())) { ObjectCollection soc = ObjectCollection.findFacetSearch(obj.getIsMemberOf()); if (soc != null) { Study std = soc.getStudy(); if (std != null && std.getId() != null) { studyId.put(obj.getIsMemberOf(), std.getId()); } } } } public void addEntity(Entity ent) { entityCache.put(ent.getUri(), ent); } public void addRole(AlignmentEntityRole entRole) { roles.put(entRole.getKey(), entRole); //System.out.println("Adding NEW ROLE: " + entRole); Variable newVar = new Variable(entRole,ID_IRT); variables.put(newVar.getKey(),newVar); //Variable newGroupVar = new Variable(entRole,GROUPID_IRT); //variables.put(newVar.getKey() + "GROUP",newGroupVar); } public void addCode(String attrUri, List<String> code) { hCodeBook.put(attrUri, code); } }
37.673507
149
0.562423
b4cce2b916287836412c381746b9eb1ac0fb0350
196
package com.here.autonomous.driving.utils.validators.Exception; public class ArgumentsAppException extends Exception { public ArgumentsAppException(String msg) { super(msg); } }
21.777778
63
0.75
311799b1a6636292b29b59aee6396531d5e05129
281
package com.summer.tools.flowable.listeners; import lombok.extern.slf4j.Slf4j; import org.flowable.task.service.delegate.DelegateTask; @Slf4j public class DeleteTaskListener implements IElementListener { @Override public void notify(DelegateTask delegateTask) { } }
21.615385
61
0.790036
3114deee09ee43fab14273bb5833f464d1feb6f0
328
import java.*; import java.time.LocalDateTime; import java.time.*; import java.time.format.DateTimeFormatter; public class main { public static void main(String[] args) { System.out.println(LocalDateTime.now()); System.out.println(ZonedDateTime.now().format(DateTimeFormatter.RFC_1123_DATE_TIME)); } }
25.230769
93
0.72561
5287e98f1dcdf47cc95f44d92a4f6faac86adbc9
755,288
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.suemsolutions.www.plantdoctortest; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int design_bottom_sheet_slide_in=0x7f05000a; public static final int design_bottom_sheet_slide_out=0x7f05000b; public static final int design_fab_in=0x7f05000c; public static final int design_fab_out=0x7f05000d; public static final int design_snackbar_in=0x7f05000e; public static final int design_snackbar_out=0x7f05000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f060000; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f01006c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static final int actionBarSize=0x7f010071; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f01006e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010069; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f01006f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f01008d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f010074; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f01007c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f01007d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f010082; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f01007f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f010079; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f01006b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f010111; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionViewClass=0x7f010110; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100b9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f0100ba; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f0100bb; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int allowStacking=0x7f0100d1; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alpha=0x7f0100ee; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f010100; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f010101; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f010038; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01003a; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f010039; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f01016f; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f010170; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f010102; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_autoHide=0x7f010109; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_hideable=0x7f0100cf; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=0x7f010123; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> */ public static final int behavior_peekHeight=0x7f0100ce; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_skipCollapsed=0x7f0100d0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=0x7f010107; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f010092; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f0100f9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f0100fa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f01008f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100bf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f0100bd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f01008e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=0x7f010164; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f01004d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=0x7f0100c1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100c2; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f0100ef; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f0100f0; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardBackgroundColor=0x7f0100d2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardCornerRadius=0x7f0100d3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardElevation=0x7f0100d4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardMaxElevation=0x7f0100d5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardPreventCornerOverlap=0x7f0100d7; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardUseCompatPadding=0x7f0100d6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f0100c3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=0x7f010128; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01004a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f010166; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f010165; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int collapsedTitleGravity=0x7f0100e9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f0100e3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f0100fc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f0100b0; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorBackgroundFloating=0x7f0100b7; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f0100b4; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f0100b2; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f0100b3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f0100b1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f0100ae; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f0100af; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=0x7f01012d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int constraintSet=0x7f010000; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010043; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEndWithActions=0x7f010047; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010044; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010045; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010042; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStartWithNavigation=0x7f010046; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPadding=0x7f0100d8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingBottom=0x7f0100dc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingLeft=0x7f0100d9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingRight=0x7f0100da; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingTop=0x7f0100db; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentScrim=0x7f0100e4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100b6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int counterEnabled=0x7f010151; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int counterMaxLength=0x7f010152; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f010154; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterTextAppearance=0x7f010153; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f01003b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f010127; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010087; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010086; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010031; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f010037; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f010094; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dividerPadding=0x7f01010d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f010093; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=0x7f0100fe; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010001; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0100a6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f01008a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f01009b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100c5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f010048; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int errorEnabled=0x7f01014f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f010150; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f01004c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expanded=0x7f010053; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int expandedTitleGravity=0x7f0100ea; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMargin=0x7f0100dd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f0100e1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginEnd=0x7f0100e0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginStart=0x7f0100de; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f0100df; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f0100e2; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> */ public static final int fabSize=0x7f010105; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int foregroundInsidePadding=0x7f01010a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f0100ff; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f010129; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int headerLayout=0x7f010119; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010002; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010041; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintAnimationEnabled=0x7f010155; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintEnabled=0x7f01014e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=0x7f01014d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f01003c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f010035; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f010125; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f01003e; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f01004b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int insetForeground=0x7f010122; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010003; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemBackground=0x7f010117; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconTint=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010040; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemTextAppearance=0x7f010118; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemTextColor=0x7f010116; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f0100f1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f010124; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f01011e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_anchor=0x7f0100f4; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_anchorGravity=0x7f0100f6; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_behavior=0x7f0100f3; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_collapseMode=0x7f0100ec; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_collapseParallaxMultiplier=0x7f0100ed; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintBaseline_creator=0x7f010004; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintBaseline_toBaselineOf=0x7f010005; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintBottom_creator=0x7f010006; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintBottom_toBottomOf=0x7f010007; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintBottom_toTopOf=0x7f010008; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintDimensionRatio=0x7f010009; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintEnd_toEndOf=0x7f01000a; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintEnd_toStartOf=0x7f01000b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintGuide_begin=0x7f01000c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintGuide_end=0x7f01000d; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintGuide_percent=0x7f01000e; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> */ public static final int layout_constraintHeight_default=0x7f01000f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintHeight_max=0x7f010010; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintHeight_min=0x7f010011; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintHorizontal_bias=0x7f010012; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_constraintHorizontal_chainStyle=0x7f010013; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintHorizontal_weight=0x7f010014; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintLeft_creator=0x7f010015; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintLeft_toLeftOf=0x7f010016; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintLeft_toRightOf=0x7f010017; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintRight_creator=0x7f010018; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintRight_toLeftOf=0x7f010019; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintRight_toRightOf=0x7f01001a; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintStart_toEndOf=0x7f01001b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintStart_toStartOf=0x7f01001c; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintTop_creator=0x7f01001d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintTop_toBottomOf=0x7f01001e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintTop_toTopOf=0x7f01001f; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintVertical_bias=0x7f010020; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_constraintVertical_chainStyle=0x7f010021; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintVertical_weight=0x7f010022; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> */ public static final int layout_constraintWidth_default=0x7f010023; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintWidth_max=0x7f010024; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintWidth_min=0x7f010025; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> */ public static final int layout_dodgeInsetEdges=0x7f0100f8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_editor_absoluteX=0x7f010026; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_editor_absoluteY=0x7f010027; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginBottom=0x7f010028; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginEnd=0x7f010029; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginLeft=0x7f01002a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginRight=0x7f01002b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginStart=0x7f01002c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginTop=0x7f01002d; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_insetEdge=0x7f0100f7; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_keyline=0x7f0100f5; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>1</td><td></td></tr> <tr><td><code>all</code></td><td>2</td><td></td></tr> <tr><td><code>basic</code></td><td>4</td><td></td></tr> <tr><td><code>chains</code></td><td>8</td><td></td></tr> </table> */ public static final int layout_optimizationLevel=0x7f01002e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static final int layout_scrollFlags=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f01004e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0100cd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0100a7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f0100a1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f0100a3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f0100a2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f0100a4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f010036; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f010169; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=0x7f010131; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f010163; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int measureWithLargestChild=0x7f01010b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=0x7f010114; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f01004f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f010168; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f010167; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010030; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f01011a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingBottomNoButtons=0x7f01011c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f01016d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f01016c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingTopNoTitle=0x7f01011d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100ac; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f0100ab; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleContentDescription=0x7f010158; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f010157; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleEnabled=0x7f010156; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleTint=0x7f010159; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int passwordToggleTintMode=0x7f01015a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=0x7f010049; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f010099; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f010112; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int pressedTranslationZ=0x7f010106; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f01003d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f01012f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f010126; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0100c6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0100c7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0100c9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int reverseLayout=0x7f010120; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int rippleColor=0x7f010104; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimAnimationDuration=0x7f0100e8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimVisibleHeightTrigger=0x7f0100e7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f01012b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f01012a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f0100a0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=0x7f0100ca; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f010091; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f01010e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static final int showDividers=0x7f01010c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f01013c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showTitle=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010050; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f01011f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f0100fd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100cb; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f01013b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=0x7f010058; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f010121; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f01011b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsed=0x7f010054; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsible=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int statusBarBackground=0x7f0100f2; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int statusBarScrim=0x7f0100e5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subMenuArrow=0x7f010113; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f010130; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f01015c; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f01016b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f010034; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f01012e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f010139; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f01013a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f010138; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabBackground=0x7f010140; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabContentStart=0x7f01013f; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static final int tabGravity=0x7f010142; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorColor=0x7f01013d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorHeight=0x7f01013e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=0x7f010144; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMinWidth=0x7f010143; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> */ public static final int tabMode=0x7f010141; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPadding=0x7f01014c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingBottom=0x7f01014b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingEnd=0x7f01014a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingStart=0x7f010148; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingTop=0x7f010149; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabSelectedTextColor=0x7f010147; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabTextAppearance=0x7f010145; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabTextColor=0x7f010146; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f01005c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0100a8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f01009d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f010084; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int textColorError=0x7f0100fb; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f01009f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f01016e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f010103; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f010137; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTint=0x7f010132; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=0x7f010133; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tickMark=0x7f010059; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tickMarkTint=0x7f01005a; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f01005b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f01002f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleEnabled=0x7f0100eb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargin=0x7f01015d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f010161; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f01015f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f01015e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f010160; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f010162; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f01015b; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f01016a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010033; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarId=0x7f0100e6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f010097; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f010134; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int trackTint=0x7f010135; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f010136; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int useCompatPadding=0x7f010108; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f01012c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f01005d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f01005f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f010060; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f010064; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f010062; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f010061; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f010063; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f010065; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f010066; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f01005e; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0a0000; public static final int abc_allow_stacked_button_bar=0x7f0a0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0a0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c004d; public static final int abc_background_cache_hint_selector_material_light=0x7f0c004e; public static final int abc_btn_colored_borderless_text_material=0x7f0c004f; public static final int abc_btn_colored_text_material=0x7f0c0050; public static final int abc_color_highlight_material=0x7f0c0051; public static final int abc_hint_foreground_material_dark=0x7f0c0052; public static final int abc_hint_foreground_material_light=0x7f0c0053; public static final int abc_input_method_navigation_guard=0x7f0c0001; public static final int abc_primary_text_disable_only_material_dark=0x7f0c0054; public static final int abc_primary_text_disable_only_material_light=0x7f0c0055; public static final int abc_primary_text_material_dark=0x7f0c0056; public static final int abc_primary_text_material_light=0x7f0c0057; public static final int abc_search_url_text=0x7f0c0058; public static final int abc_search_url_text_normal=0x7f0c0002; public static final int abc_search_url_text_pressed=0x7f0c0003; public static final int abc_search_url_text_selected=0x7f0c0004; public static final int abc_secondary_text_material_dark=0x7f0c0059; public static final int abc_secondary_text_material_light=0x7f0c005a; public static final int abc_tint_btn_checkable=0x7f0c005b; public static final int abc_tint_default=0x7f0c005c; public static final int abc_tint_edittext=0x7f0c005d; public static final int abc_tint_seek_thumb=0x7f0c005e; public static final int abc_tint_spinner=0x7f0c005f; public static final int abc_tint_switch_thumb=0x7f0c0060; public static final int abc_tint_switch_track=0x7f0c0061; public static final int accent_material_dark=0x7f0c0005; public static final int accent_material_light=0x7f0c0006; public static final int background_floating_material_dark=0x7f0c0007; public static final int background_floating_material_light=0x7f0c0008; public static final int background_material_dark=0x7f0c0009; public static final int background_material_light=0x7f0c000a; public static final int bright_foreground_disabled_material_dark=0x7f0c000b; public static final int bright_foreground_disabled_material_light=0x7f0c000c; public static final int bright_foreground_inverse_material_dark=0x7f0c000d; public static final int bright_foreground_inverse_material_light=0x7f0c000e; public static final int bright_foreground_material_dark=0x7f0c000f; public static final int bright_foreground_material_light=0x7f0c0010; public static final int button_material_dark=0x7f0c0011; public static final int button_material_light=0x7f0c0012; public static final int cardview_dark_background=0x7f0c0013; public static final int cardview_light_background=0x7f0c0014; public static final int cardview_shadow_end_color=0x7f0c0015; public static final int cardview_shadow_start_color=0x7f0c0016; public static final int colorAccent=0x7f0c0017; public static final int colorPrimary=0x7f0c0018; public static final int colorPrimaryDark=0x7f0c0019; public static final int design_bottom_navigation_shadow_color=0x7f0c001a; public static final int design_error=0x7f0c0062; public static final int design_fab_shadow_end_color=0x7f0c001b; public static final int design_fab_shadow_mid_color=0x7f0c001c; public static final int design_fab_shadow_start_color=0x7f0c001d; public static final int design_fab_stroke_end_inner_color=0x7f0c001e; public static final int design_fab_stroke_end_outer_color=0x7f0c001f; public static final int design_fab_stroke_top_inner_color=0x7f0c0020; public static final int design_fab_stroke_top_outer_color=0x7f0c0021; public static final int design_snackbar_background_color=0x7f0c0022; public static final int design_textinput_error_color_dark=0x7f0c0023; public static final int design_textinput_error_color_light=0x7f0c0024; public static final int design_tint_password_toggle=0x7f0c0063; public static final int dim_foreground_disabled_material_dark=0x7f0c0025; public static final int dim_foreground_disabled_material_light=0x7f0c0026; public static final int dim_foreground_material_dark=0x7f0c0027; public static final int dim_foreground_material_light=0x7f0c0028; public static final int foreground_material_dark=0x7f0c0029; public static final int foreground_material_light=0x7f0c002a; public static final int highlighted_text_material_dark=0x7f0c002b; public static final int highlighted_text_material_light=0x7f0c002c; public static final int material_blue_grey_800=0x7f0c002d; public static final int material_blue_grey_900=0x7f0c002e; public static final int material_blue_grey_950=0x7f0c002f; public static final int material_deep_teal_200=0x7f0c0030; public static final int material_deep_teal_500=0x7f0c0031; public static final int material_grey_100=0x7f0c0032; public static final int material_grey_300=0x7f0c0033; public static final int material_grey_50=0x7f0c0034; public static final int material_grey_600=0x7f0c0035; public static final int material_grey_800=0x7f0c0036; public static final int material_grey_850=0x7f0c0037; public static final int material_grey_900=0x7f0c0038; public static final int notification_action_color_filter=0x7f0c0000; public static final int notification_icon_bg_color=0x7f0c0039; public static final int notification_material_background_media_default_color=0x7f0c003a; public static final int primary_dark_material_dark=0x7f0c003b; public static final int primary_dark_material_light=0x7f0c003c; public static final int primary_material_dark=0x7f0c003d; public static final int primary_material_light=0x7f0c003e; public static final int primary_text_default_material_dark=0x7f0c003f; public static final int primary_text_default_material_light=0x7f0c0040; public static final int primary_text_disabled_material_dark=0x7f0c0041; public static final int primary_text_disabled_material_light=0x7f0c0042; public static final int ripple_material_dark=0x7f0c0043; public static final int ripple_material_light=0x7f0c0044; public static final int secondary_text_default_material_dark=0x7f0c0045; public static final int secondary_text_default_material_light=0x7f0c0046; public static final int secondary_text_disabled_material_dark=0x7f0c0047; public static final int secondary_text_disabled_material_light=0x7f0c0048; public static final int switch_thumb_disabled_material_dark=0x7f0c0049; public static final int switch_thumb_disabled_material_light=0x7f0c004a; public static final int switch_thumb_material_dark=0x7f0c0064; public static final int switch_thumb_material_light=0x7f0c0065; public static final int switch_thumb_normal_material_dark=0x7f0c004b; public static final int switch_thumb_normal_material_light=0x7f0c004c; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000c; public static final int abc_action_bar_content_inset_with_nav=0x7f08000d; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000e; public static final int abc_action_bar_default_padding_start_material=0x7f08000f; public static final int abc_action_bar_elevation_material=0x7f08001d; public static final int abc_action_bar_icon_vertical_padding_material=0x7f08001e; public static final int abc_action_bar_overflow_padding_end_material=0x7f08001f; public static final int abc_action_bar_overflow_padding_start_material=0x7f080020; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f080021; public static final int abc_action_bar_stacked_tab_max_width=0x7f080022; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080023; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080024; public static final int abc_action_button_min_height_material=0x7f080025; public static final int abc_action_button_min_width_material=0x7f080026; public static final int abc_action_button_min_width_overflow_material=0x7f080027; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080028; public static final int abc_button_inset_vertical_material=0x7f080029; public static final int abc_button_padding_horizontal_material=0x7f08002a; public static final int abc_button_padding_vertical_material=0x7f08002b; public static final int abc_cascading_menus_min_smallest_width=0x7f08002c; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f08002d; public static final int abc_control_inset_material=0x7f08002e; public static final int abc_control_padding_material=0x7f08002f; public static final int abc_dialog_fixed_height_major=0x7f080006; public static final int abc_dialog_fixed_height_minor=0x7f080007; public static final int abc_dialog_fixed_width_major=0x7f080008; public static final int abc_dialog_fixed_width_minor=0x7f080009; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f080030; public static final int abc_dialog_list_padding_top_no_title=0x7f080031; public static final int abc_dialog_min_width_major=0x7f08000a; public static final int abc_dialog_min_width_minor=0x7f08000b; public static final int abc_dialog_padding_material=0x7f080032; public static final int abc_dialog_padding_top_material=0x7f080033; public static final int abc_dialog_title_divider_material=0x7f080034; public static final int abc_disabled_alpha_material_dark=0x7f080035; public static final int abc_disabled_alpha_material_light=0x7f080036; public static final int abc_dropdownitem_icon_width=0x7f080037; public static final int abc_dropdownitem_text_padding_left=0x7f080038; public static final int abc_dropdownitem_text_padding_right=0x7f080039; public static final int abc_edit_text_inset_bottom_material=0x7f08003a; public static final int abc_edit_text_inset_horizontal_material=0x7f08003b; public static final int abc_edit_text_inset_top_material=0x7f08003c; public static final int abc_floating_window_z=0x7f08003d; public static final int abc_list_item_padding_horizontal_material=0x7f08003e; public static final int abc_panel_menu_list_width=0x7f08003f; public static final int abc_progress_bar_height_material=0x7f080040; public static final int abc_search_view_preferred_height=0x7f080041; public static final int abc_search_view_preferred_width=0x7f080042; public static final int abc_seekbar_track_background_height_material=0x7f080043; public static final int abc_seekbar_track_progress_height_material=0x7f080044; public static final int abc_select_dialog_padding_start_material=0x7f080045; public static final int abc_switch_padding=0x7f080019; public static final int abc_text_size_body_1_material=0x7f080046; public static final int abc_text_size_body_2_material=0x7f080047; public static final int abc_text_size_button_material=0x7f080048; public static final int abc_text_size_caption_material=0x7f080049; public static final int abc_text_size_display_1_material=0x7f08004a; public static final int abc_text_size_display_2_material=0x7f08004b; public static final int abc_text_size_display_3_material=0x7f08004c; public static final int abc_text_size_display_4_material=0x7f08004d; public static final int abc_text_size_headline_material=0x7f08004e; public static final int abc_text_size_large_material=0x7f08004f; public static final int abc_text_size_medium_material=0x7f080050; public static final int abc_text_size_menu_header_material=0x7f080051; public static final int abc_text_size_menu_material=0x7f080052; public static final int abc_text_size_small_material=0x7f080053; public static final int abc_text_size_subhead_material=0x7f080054; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f080055; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int cardview_compat_inset_shadow=0x7f080056; public static final int cardview_default_elevation=0x7f080057; public static final int cardview_default_radius=0x7f080058; public static final int design_appbar_elevation=0x7f080059; public static final int design_bottom_navigation_active_item_max_width=0x7f08005a; public static final int design_bottom_navigation_active_text_size=0x7f08005b; public static final int design_bottom_navigation_elevation=0x7f08005c; public static final int design_bottom_navigation_height=0x7f08005d; public static final int design_bottom_navigation_item_max_width=0x7f08005e; public static final int design_bottom_navigation_item_min_width=0x7f08005f; public static final int design_bottom_navigation_margin=0x7f080060; public static final int design_bottom_navigation_shadow_height=0x7f080061; public static final int design_bottom_navigation_text_size=0x7f080062; public static final int design_bottom_sheet_modal_elevation=0x7f080063; public static final int design_bottom_sheet_peek_height_min=0x7f080064; public static final int design_fab_border_width=0x7f080065; public static final int design_fab_elevation=0x7f080066; public static final int design_fab_image_size=0x7f080067; public static final int design_fab_size_mini=0x7f080068; public static final int design_fab_size_normal=0x7f080069; public static final int design_fab_translation_z_pressed=0x7f08006a; public static final int design_navigation_elevation=0x7f08006b; public static final int design_navigation_icon_padding=0x7f08006c; public static final int design_navigation_icon_size=0x7f08006d; public static final int design_navigation_max_width=0x7f080010; public static final int design_navigation_padding_bottom=0x7f08006e; public static final int design_navigation_separator_vertical_padding=0x7f08006f; public static final int design_snackbar_action_inline_max_width=0x7f080011; public static final int design_snackbar_background_corner_radius=0x7f080012; public static final int design_snackbar_elevation=0x7f080070; public static final int design_snackbar_extra_spacing_horizontal=0x7f080013; public static final int design_snackbar_max_width=0x7f080014; public static final int design_snackbar_min_width=0x7f080015; public static final int design_snackbar_padding_horizontal=0x7f080071; public static final int design_snackbar_padding_vertical=0x7f080072; public static final int design_snackbar_padding_vertical_2lines=0x7f080016; public static final int design_snackbar_text_size=0x7f080073; public static final int design_tab_max_width=0x7f080074; public static final int design_tab_scrollable_min_width=0x7f080017; public static final int design_tab_text_size=0x7f080075; public static final int design_tab_text_size_2line=0x7f080076; public static final int disabled_alpha_material_dark=0x7f080077; public static final int disabled_alpha_material_light=0x7f080078; public static final int fab_margin=0x7f080079; public static final int highlight_alpha_material_colored=0x7f08007a; public static final int highlight_alpha_material_dark=0x7f08007b; public static final int highlight_alpha_material_light=0x7f08007c; public static final int hint_alpha_material_dark=0x7f08007d; public static final int hint_alpha_material_light=0x7f08007e; public static final int hint_pressed_alpha_material_dark=0x7f08007f; public static final int hint_pressed_alpha_material_light=0x7f080080; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080081; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080082; public static final int item_touch_helper_swipe_escape_velocity=0x7f080083; public static final int notification_action_icon_size=0x7f080084; public static final int notification_action_text_size=0x7f080085; public static final int notification_big_circle_margin=0x7f080086; public static final int notification_content_margin_start=0x7f08001a; public static final int notification_large_icon_height=0x7f080087; public static final int notification_large_icon_width=0x7f080088; public static final int notification_main_column_padding_top=0x7f08001b; public static final int notification_media_narrow_margin=0x7f08001c; public static final int notification_right_icon_size=0x7f080089; public static final int notification_right_side_padding_top=0x7f080018; public static final int notification_small_icon_background_padding=0x7f08008a; public static final int notification_small_icon_size_as_large=0x7f08008b; public static final int notification_subtext_size=0x7f08008c; public static final int notification_top_pad=0x7f08008d; public static final int notification_top_pad_large_text=0x7f08008e; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static final int abc_cab_background_internal_bg=0x7f02000d; public static final int abc_cab_background_top_material=0x7f02000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static final int abc_control_background_material=0x7f020010; public static final int abc_dialog_material_background=0x7f020011; public static final int abc_edit_text_material=0x7f020012; public static final int abc_ic_ab_back_material=0x7f020013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static final int abc_ic_clear_material=0x7f020015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static final int abc_ic_go_search_api_material=0x7f020017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_overflow_material=0x7f02001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static final int abc_ic_search_api_material=0x7f02001e; public static final int abc_ic_star_black_16dp=0x7f02001f; public static final int abc_ic_star_black_36dp=0x7f020020; public static final int abc_ic_star_black_48dp=0x7f020021; public static final int abc_ic_star_half_black_16dp=0x7f020022; public static final int abc_ic_star_half_black_36dp=0x7f020023; public static final int abc_ic_star_half_black_48dp=0x7f020024; public static final int abc_ic_voice_search_api_material=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_indicator_material=0x7f020035; public static final int abc_ratingbar_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_tick_mark_material=0x7f02003e; public static final int abc_seekbar_track_material=0x7f02003f; public static final int abc_spinner_mtrl_am_alpha=0x7f020040; public static final int abc_spinner_textfield_background_material=0x7f020041; public static final int abc_switch_thumb_material=0x7f020042; public static final int abc_switch_track_mtrl_alpha=0x7f020043; public static final int abc_tab_indicator_material=0x7f020044; public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; public static final int abc_text_cursor_material=0x7f020046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_material=0x7f020051; public static final int abc_vector_test=0x7f020052; public static final int avd_hide_password=0x7f020053; public static final int avd_hide_password_1=0x7f02006b; public static final int avd_hide_password_2=0x7f02006c; public static final int avd_hide_password_3=0x7f02006d; public static final int avd_show_password=0x7f020054; public static final int avd_show_password_1=0x7f02006e; public static final int avd_show_password_2=0x7f02006f; public static final int avd_show_password_3=0x7f020070; public static final int background1=0x7f020055; public static final int design_bottom_navigation_item_background=0x7f020056; public static final int design_fab_background=0x7f020057; public static final int design_ic_visibility=0x7f020058; public static final int design_ic_visibility_off=0x7f020059; public static final int design_password_eye=0x7f02005a; public static final int design_snackbar_background=0x7f02005b; public static final int navigation_empty_icon=0x7f02005c; public static final int notification_action_background=0x7f02005d; public static final int notification_bg=0x7f02005e; public static final int notification_bg_low=0x7f02005f; public static final int notification_bg_low_normal=0x7f020060; public static final int notification_bg_low_pressed=0x7f020061; public static final int notification_bg_normal=0x7f020062; public static final int notification_bg_normal_pressed=0x7f020063; public static final int notification_icon_background=0x7f020064; public static final int notification_template_icon_bg=0x7f020069; public static final int notification_template_icon_low_bg=0x7f02006a; public static final int notification_tile_bg=0x7f020065; public static final int notify_panel_notification_icon_bg=0x7f020066; public static final int plant1=0x7f020067; public static final int plant2=0x7f020068; } public static final class id { public static final int action0=0x7f0d0094; public static final int action_bar=0x7f0d006b; public static final int action_bar_activity_content=0x7f0d0000; public static final int action_bar_container=0x7f0d006a; public static final int action_bar_root=0x7f0d0066; public static final int action_bar_spinner=0x7f0d0001; public static final int action_bar_subtitle=0x7f0d0049; public static final int action_bar_title=0x7f0d0048; public static final int action_container=0x7f0d0091; public static final int action_context_bar=0x7f0d006c; public static final int action_divider=0x7f0d0098; public static final int action_image=0x7f0d0092; public static final int action_menu_divider=0x7f0d0002; public static final int action_menu_presenter=0x7f0d0003; public static final int action_mode_bar=0x7f0d0068; public static final int action_mode_bar_stub=0x7f0d0067; public static final int action_mode_close_button=0x7f0d004a; public static final int action_text=0x7f0d0093; public static final int actions=0x7f0d00a1; public static final int activity_chooser_view_content=0x7f0d004b; public static final int add=0x7f0d0026; public static final int alertTitle=0x7f0d005f; public static final int all=0x7f0d0014; public static final int always=0x7f0d0041; public static final int auto=0x7f0d002d; public static final int basic=0x7f0d0015; public static final int beginning=0x7f0d003f; public static final int bottom=0x7f0d002e; public static final int buttonPanel=0x7f0d0052; public static final int cameraButton=0x7f0d007f; public static final int cancel_action=0x7f0d0095; public static final int card_disease_name=0x7f0d007c; public static final int card_disease_probability=0x7f0d007d; public static final int center=0x7f0d002f; public static final int center_horizontal=0x7f0d0030; public static final int center_vertical=0x7f0d0031; public static final int chains=0x7f0d0016; public static final int checkbox=0x7f0d0062; public static final int chronometer=0x7f0d009d; public static final int clip_horizontal=0x7f0d003a; public static final int clip_vertical=0x7f0d003b; public static final int collapseActionView=0x7f0d0042; public static final int contentPanel=0x7f0d0055; public static final int custom=0x7f0d005c; public static final int customPanel=0x7f0d005b; public static final int decor_content_parent=0x7f0d0069; public static final int default_activity_button=0x7f0d004e; public static final int design_bottom_sheet=0x7f0d0088; public static final int design_menu_item_action_area=0x7f0d008f; public static final int design_menu_item_action_area_stub=0x7f0d008e; public static final int design_menu_item_text=0x7f0d008d; public static final int design_navigation_view=0x7f0d008c; public static final int disableHome=0x7f0d001b; public static final int edit_query=0x7f0d006d; public static final int end=0x7f0d0032; public static final int end_padder=0x7f0d00a7; public static final int enterAlways=0x7f0d0021; public static final int enterAlwaysCollapsed=0x7f0d0022; public static final int exitUntilCollapsed=0x7f0d0023; public static final int expand_activities_button=0x7f0d004c; public static final int expanded_menu=0x7f0d0061; public static final int fab=0x7f0d007b; public static final int fill=0x7f0d003c; public static final int fill_horizontal=0x7f0d003d; public static final int fill_vertical=0x7f0d0033; public static final int fixed=0x7f0d0046; public static final int galleryButton=0x7f0d0080; public static final int home=0x7f0d0004; public static final int homeAsUp=0x7f0d001c; public static final int icon=0x7f0d0050; public static final int icon_group=0x7f0d00a2; public static final int ifRoom=0x7f0d0043; public static final int image=0x7f0d004d; public static final int imageView=0x7f0d0082; public static final int info=0x7f0d009e; public static final int item_touch_helper_previous_elevation=0x7f0d0005; public static final int largeLabel=0x7f0d0086; public static final int layout=0x7f0d007e; public static final int left=0x7f0d0034; public static final int line1=0x7f0d00a3; public static final int line3=0x7f0d00a5; public static final int linearlayout1=0x7f0d0081; public static final int listMode=0x7f0d0018; public static final int list_item=0x7f0d004f; public static final int masked=0x7f0d00a9; public static final int media_actions=0x7f0d0097; public static final int middle=0x7f0d0040; public static final int mini=0x7f0d003e; public static final int multiply=0x7f0d0027; public static final int navigation_header_container=0x7f0d008b; public static final int never=0x7f0d0044; public static final int none=0x7f0d0017; public static final int normal=0x7f0d0019; public static final int notification_background=0x7f0d009f; public static final int notification_main_column=0x7f0d009a; public static final int notification_main_column_container=0x7f0d0099; public static final int packed=0x7f0d0012; public static final int parallax=0x7f0d0038; public static final int parent=0x7f0d000f; public static final int parentPanel=0x7f0d0054; public static final int pin=0x7f0d0039; public static final int progress_circular=0x7f0d0006; public static final int progress_horizontal=0x7f0d0007; public static final int radio=0x7f0d0064; public static final int recycler_view=0x7f0d0084; public static final int right=0x7f0d0035; public static final int right_icon=0x7f0d00a0; public static final int right_side=0x7f0d009b; public static final int screen=0x7f0d0028; public static final int scroll=0x7f0d0024; public static final int scrollIndicatorDown=0x7f0d005a; public static final int scrollIndicatorUp=0x7f0d0056; public static final int scrollView=0x7f0d0057; public static final int scrollable=0x7f0d0047; public static final int search_badge=0x7f0d006f; public static final int search_bar=0x7f0d006e; public static final int search_button=0x7f0d0070; public static final int search_close_btn=0x7f0d0075; public static final int search_edit_frame=0x7f0d0071; public static final int search_go_btn=0x7f0d0077; public static final int search_mag_icon=0x7f0d0072; public static final int search_plate=0x7f0d0073; public static final int search_src_text=0x7f0d0074; public static final int search_voice_btn=0x7f0d0078; public static final int select_dialog_listview=0x7f0d0079; public static final int shortcut=0x7f0d0063; public static final int showCustom=0x7f0d001d; public static final int showHome=0x7f0d001e; public static final int showTitle=0x7f0d001f; public static final int smallLabel=0x7f0d0085; public static final int snackbar_action=0x7f0d008a; public static final int snackbar_text=0x7f0d0089; public static final int snap=0x7f0d0025; public static final int spacer=0x7f0d0053; public static final int split_action_bar=0x7f0d0008; public static final int spread=0x7f0d0010; public static final int spread_inside=0x7f0d0013; public static final int src_atop=0x7f0d0029; public static final int src_in=0x7f0d002a; public static final int src_over=0x7f0d002b; public static final int start=0x7f0d0036; public static final int status_bar_latest_event_content=0x7f0d0096; public static final int submenuarrow=0x7f0d0065; public static final int submit_area=0x7f0d0076; public static final int tabMode=0x7f0d001a; public static final int text=0x7f0d00a6; public static final int text2=0x7f0d00a4; public static final int textSpacerNoButtons=0x7f0d0059; public static final int textSpacerNoTitle=0x7f0d0058; public static final int textView=0x7f0d0083; public static final int text_input_password_toggle=0x7f0d0090; public static final int textinput_counter=0x7f0d0009; public static final int textinput_error=0x7f0d000a; public static final int time=0x7f0d009c; public static final int title=0x7f0d0051; public static final int titleDividerNoCustom=0x7f0d0060; public static final int title_template=0x7f0d005e; public static final int toolbar=0x7f0d007a; public static final int top=0x7f0d0037; public static final int topPanel=0x7f0d005d; public static final int touch_outside=0x7f0d0087; public static final int transition_current_scene=0x7f0d000b; public static final int transition_scene_layoutid_cache=0x7f0d000c; public static final int up=0x7f0d000d; public static final int useLogo=0x7f0d0020; public static final int view_offset_helper=0x7f0d000e; public static final int visible=0x7f0d00a8; public static final int withText=0x7f0d0045; public static final int wrap=0x7f0d0011; public static final int wrap_content=0x7f0d002c; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0001; public static final int abc_config_activityShortDur=0x7f0b0002; public static final int app_bar_elevation_anim_duration=0x7f0b0003; public static final int bottom_sheet_slide_duration=0x7f0b0004; public static final int cancel_button_image_alpha=0x7f0b0005; public static final int design_snackbar_text_max_lines=0x7f0b0000; public static final int hide_password_duration=0x7f0b0006; public static final int show_password_duration=0x7f0b0007; public static final int status_bar_notification_info_maxnum=0x7f0b0008; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_alert_dialog_title_material=0x7f04000b; public static final int abc_dialog_title_material=0x7f04000c; public static final int abc_expanded_menu_layout=0x7f04000d; public static final int abc_list_menu_item_checkbox=0x7f04000e; public static final int abc_list_menu_item_icon=0x7f04000f; public static final int abc_list_menu_item_layout=0x7f040010; public static final int abc_list_menu_item_radio=0x7f040011; public static final int abc_popup_menu_header_item_layout=0x7f040012; public static final int abc_popup_menu_item_layout=0x7f040013; public static final int abc_screen_content_include=0x7f040014; public static final int abc_screen_simple=0x7f040015; public static final int abc_screen_simple_overlay_action_mode=0x7f040016; public static final int abc_screen_toolbar=0x7f040017; public static final int abc_search_dropdown_item_icons_2line=0x7f040018; public static final int abc_search_view=0x7f040019; public static final int abc_select_dialog_material=0x7f04001a; public static final int activity_main=0x7f04001b; public static final int activity_main2=0x7f04001c; public static final int card_disease=0x7f04001d; public static final int content_main=0x7f04001e; public static final int content_main2=0x7f04001f; public static final int design_bottom_navigation_item=0x7f040020; public static final int design_bottom_sheet_dialog=0x7f040021; public static final int design_layout_snackbar=0x7f040022; public static final int design_layout_snackbar_include=0x7f040023; public static final int design_layout_tab_icon=0x7f040024; public static final int design_layout_tab_text=0x7f040025; public static final int design_menu_item_action_area=0x7f040026; public static final int design_navigation_item=0x7f040027; public static final int design_navigation_item_header=0x7f040028; public static final int design_navigation_item_separator=0x7f040029; public static final int design_navigation_item_subheader=0x7f04002a; public static final int design_navigation_menu=0x7f04002b; public static final int design_navigation_menu_item=0x7f04002c; public static final int design_text_input_password_icon=0x7f04002d; public static final int notification_action=0x7f04002e; public static final int notification_action_tombstone=0x7f04002f; public static final int notification_media_action=0x7f040030; public static final int notification_media_cancel_action=0x7f040031; public static final int notification_template_big_media=0x7f040032; public static final int notification_template_big_media_custom=0x7f040033; public static final int notification_template_big_media_narrow=0x7f040034; public static final int notification_template_big_media_narrow_custom=0x7f040035; public static final int notification_template_custom_big=0x7f040036; public static final int notification_template_icon_group=0x7f040037; public static final int notification_template_lines_media=0x7f040038; public static final int notification_template_media=0x7f040039; public static final int notification_template_media_custom=0x7f04003a; public static final int notification_template_part_chronometer=0x7f04003b; public static final int notification_template_part_time=0x7f04003c; public static final int select_dialog_item_material=0x7f04003d; public static final int select_dialog_multichoice_material=0x7f04003e; public static final int select_dialog_singlechoice_material=0x7f04003f; public static final int support_simple_spinner_dropdown_item=0x7f040040; } public static final class mipmap { public static final int ic_launcher=0x7f030000; public static final int ic_launcher_round=0x7f030001; } public static final class string { public static final int abc_action_bar_home_description=0x7f070000; public static final int abc_action_bar_home_description_format=0x7f070001; public static final int abc_action_bar_home_subtitle_description_format=0x7f070002; public static final int abc_action_bar_up_description=0x7f070003; public static final int abc_action_menu_overflow_description=0x7f070004; public static final int abc_action_mode_done=0x7f070005; public static final int abc_activity_chooser_view_see_all=0x7f070006; public static final int abc_activitychooserview_choose_application=0x7f070007; public static final int abc_capital_off=0x7f070008; public static final int abc_capital_on=0x7f070009; public static final int abc_font_family_body_1_material=0x7f070015; public static final int abc_font_family_body_2_material=0x7f070016; public static final int abc_font_family_button_material=0x7f070017; public static final int abc_font_family_caption_material=0x7f070018; public static final int abc_font_family_display_1_material=0x7f070019; public static final int abc_font_family_display_2_material=0x7f07001a; public static final int abc_font_family_display_3_material=0x7f07001b; public static final int abc_font_family_display_4_material=0x7f07001c; public static final int abc_font_family_headline_material=0x7f07001d; public static final int abc_font_family_menu_material=0x7f07001e; public static final int abc_font_family_subhead_material=0x7f07001f; public static final int abc_font_family_title_material=0x7f070020; public static final int abc_search_hint=0x7f07000a; public static final int abc_searchview_description_clear=0x7f07000b; public static final int abc_searchview_description_query=0x7f07000c; public static final int abc_searchview_description_search=0x7f07000d; public static final int abc_searchview_description_submit=0x7f07000e; public static final int abc_searchview_description_voice=0x7f07000f; public static final int abc_shareactionprovider_share_with=0x7f070010; public static final int abc_shareactionprovider_share_with_application=0x7f070011; public static final int abc_toolbar_collapse_description=0x7f070012; public static final int action_settings=0x7f070021; public static final int app_name=0x7f070022; public static final int appbar_scrolling_view_behavior=0x7f070023; public static final int bottom_sheet_behavior=0x7f070024; public static final int character_counter_pattern=0x7f070025; public static final int password_toggle_content_description=0x7f070026; public static final int path_password_eye=0x7f070027; public static final int path_password_eye_mask_strike_through=0x7f070028; public static final int path_password_eye_mask_visible=0x7f070029; public static final int path_password_strike_through=0x7f07002a; public static final int search_menu_title=0x7f070013; public static final int status_bar_notification_info_overflow=0x7f070014; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0900a2; public static final int AlertDialog_AppCompat_Light=0x7f0900a3; public static final int Animation_AppCompat_Dialog=0x7f0900a4; public static final int Animation_AppCompat_DropDownUp=0x7f0900a5; public static final int Animation_Design_BottomSheetDialog=0x7f0900a6; public static final int AppTheme=0x7f0900a7; public static final int AppTheme_AppBarOverlay=0x7f0900a8; public static final int AppTheme_NoActionBar=0x7f0900a9; public static final int AppTheme_PopupOverlay=0x7f0900aa; public static final int Base_AlertDialog_AppCompat=0x7f0900ab; public static final int Base_AlertDialog_AppCompat_Light=0x7f0900ac; public static final int Base_Animation_AppCompat_Dialog=0x7f0900ad; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0900ae; public static final int Base_CardView=0x7f0900af; public static final int Base_DialogWindowTitle_AppCompat=0x7f0900b0; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0900b1; public static final int Base_TextAppearance_AppCompat=0x7f090040; public static final int Base_TextAppearance_AppCompat_Body1=0x7f090041; public static final int Base_TextAppearance_AppCompat_Body2=0x7f090042; public static final int Base_TextAppearance_AppCompat_Button=0x7f090028; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090043; public static final int Base_TextAppearance_AppCompat_Display1=0x7f090044; public static final int Base_TextAppearance_AppCompat_Display2=0x7f090045; public static final int Base_TextAppearance_AppCompat_Display3=0x7f090046; public static final int Base_TextAppearance_AppCompat_Display4=0x7f090047; public static final int Base_TextAppearance_AppCompat_Headline=0x7f090048; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f09000c; public static final int Base_TextAppearance_AppCompat_Large=0x7f090049; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f09000d; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f09004b; public static final int Base_TextAppearance_AppCompat_Medium=0x7f09004c; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f09000e; public static final int Base_TextAppearance_AppCompat_Menu=0x7f09004d; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0900b2; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09004e; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09004f; public static final int Base_TextAppearance_AppCompat_Small=0x7f090050; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09000f; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090051; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090010; public static final int Base_TextAppearance_AppCompat_Title=0x7f090052; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090011; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090096; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090053; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090054; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090055; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090056; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090057; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090058; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090059; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f09009e; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f09009f; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090097; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900b3; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f09005a; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09005b; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09005c; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09005d; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09005e; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900b4; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09005f; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090060; public static final int Base_Theme_AppCompat=0x7f090061; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0900b5; public static final int Base_Theme_AppCompat_Dialog=0x7f090012; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f090013; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900b6; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f090014; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090002; public static final int Base_Theme_AppCompat_Light=0x7f090062; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900b7; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f090015; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f090016; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900b8; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090017; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090003; public static final int Base_ThemeOverlay_AppCompat=0x7f0900b9; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900ba; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900bb; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900bc; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f090018; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f090019; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900bd; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09001a; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09001b; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f09001c; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090024; public static final int Base_V12_Widget_AppCompat_EditText=0x7f090025; public static final int Base_V21_Theme_AppCompat=0x7f090063; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090064; public static final int Base_V21_Theme_AppCompat_Light=0x7f090065; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090066; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090067; public static final int Base_V22_Theme_AppCompat=0x7f090094; public static final int Base_V22_Theme_AppCompat_Light=0x7f090095; public static final int Base_V23_Theme_AppCompat=0x7f090098; public static final int Base_V23_Theme_AppCompat_Light=0x7f090099; public static final int Base_V7_Theme_AppCompat=0x7f0900be; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900bf; public static final int Base_V7_Theme_AppCompat_Light=0x7f0900c0; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900c1; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900c2; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900c3; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900c4; public static final int Base_Widget_AppCompat_ActionBar=0x7f0900c5; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900c6; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900c7; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090068; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090069; public static final int Base_Widget_AppCompat_ActionButton=0x7f09006a; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09006b; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09006c; public static final int Base_Widget_AppCompat_ActionMode=0x7f0900c8; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900c9; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090026; public static final int Base_Widget_AppCompat_Button=0x7f09006d; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09006e; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09006f; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900ca; public static final int Base_Widget_AppCompat_Button_Colored=0x7f09009a; public static final int Base_Widget_AppCompat_Button_Small=0x7f090070; public static final int Base_Widget_AppCompat_ButtonBar=0x7f090071; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900cb; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090072; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090073; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900cc; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900cd; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090074; public static final int Base_Widget_AppCompat_EditText=0x7f090027; public static final int Base_Widget_AppCompat_ImageButton=0x7f090075; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900ce; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900cf; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900d0; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090076; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090077; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090078; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090079; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09007a; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900d1; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09007b; public static final int Base_Widget_AppCompat_ListView=0x7f09007c; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09007d; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09007e; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09007f; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090080; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900d2; public static final int Base_Widget_AppCompat_ProgressBar=0x7f09001d; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09001e; public static final int Base_Widget_AppCompat_RatingBar=0x7f090081; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f09009b; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f09009c; public static final int Base_Widget_AppCompat_SearchView=0x7f0900d3; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900d4; public static final int Base_Widget_AppCompat_SeekBar=0x7f090082; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900d5; public static final int Base_Widget_AppCompat_Spinner=0x7f090083; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090004; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090084; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900d6; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090085; public static final int Base_Widget_Design_AppBarLayout=0x7f0900d7; public static final int Base_Widget_Design_TabLayout=0x7f0900d8; public static final int CardView=0x7f09009d; public static final int CardView_Dark=0x7f0900d9; public static final int CardView_Light=0x7f0900da; public static final int Platform_AppCompat=0x7f09001f; public static final int Platform_AppCompat_Light=0x7f090020; public static final int Platform_ThemeOverlay_AppCompat=0x7f090086; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090087; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090088; public static final int Platform_V11_AppCompat=0x7f090021; public static final int Platform_V11_AppCompat_Light=0x7f090022; public static final int Platform_V14_AppCompat=0x7f090029; public static final int Platform_V14_AppCompat_Light=0x7f09002a; public static final int Platform_V21_AppCompat=0x7f090089; public static final int Platform_V21_AppCompat_Light=0x7f09008a; public static final int Platform_V25_AppCompat=0x7f0900a0; public static final int Platform_V25_AppCompat_Light=0x7f0900a1; public static final int Platform_Widget_AppCompat_Spinner=0x7f090023; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090032; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090033; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090034; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090035; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090036; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090037; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090038; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090039; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09003a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09003b; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09003c; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09003d; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f09003e; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f09003f; public static final int TextAppearance_AppCompat=0x7f0900db; public static final int TextAppearance_AppCompat_Body1=0x7f0900dc; public static final int TextAppearance_AppCompat_Body2=0x7f0900dd; public static final int TextAppearance_AppCompat_Button=0x7f0900de; public static final int TextAppearance_AppCompat_Caption=0x7f0900df; public static final int TextAppearance_AppCompat_Display1=0x7f0900e0; public static final int TextAppearance_AppCompat_Display2=0x7f0900e1; public static final int TextAppearance_AppCompat_Display3=0x7f0900e2; public static final int TextAppearance_AppCompat_Display4=0x7f0900e3; public static final int TextAppearance_AppCompat_Headline=0x7f0900e4; public static final int TextAppearance_AppCompat_Inverse=0x7f0900e5; public static final int TextAppearance_AppCompat_Large=0x7f0900e6; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900e7; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900e8; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900e9; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900ea; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900eb; public static final int TextAppearance_AppCompat_Medium=0x7f0900ec; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900ed; public static final int TextAppearance_AppCompat_Menu=0x7f0900ee; public static final int TextAppearance_AppCompat_Notification=0x7f09002b; public static final int TextAppearance_AppCompat_Notification_Info=0x7f09008b; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f09008c; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0900ef; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0900f0; public static final int TextAppearance_AppCompat_Notification_Media=0x7f09008d; public static final int TextAppearance_AppCompat_Notification_Time=0x7f09008e; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f09008f; public static final int TextAppearance_AppCompat_Notification_Title=0x7f09002c; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f090090; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900f1; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900f2; public static final int TextAppearance_AppCompat_Small=0x7f0900f3; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900f4; public static final int TextAppearance_AppCompat_Subhead=0x7f0900f5; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900f6; public static final int TextAppearance_AppCompat_Title=0x7f0900f7; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900f8; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900f9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900fa; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900fb; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900fc; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900fd; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900fe; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900ff; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090100; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f090101; public static final int TextAppearance_AppCompat_Widget_Button=0x7f090102; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f090103; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f090104; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090105; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f090106; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090107; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090108; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090109; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f09010a; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09010b; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f09010c; public static final int TextAppearance_Design_Counter=0x7f09010d; public static final int TextAppearance_Design_Counter_Overflow=0x7f09010e; public static final int TextAppearance_Design_Error=0x7f09010f; public static final int TextAppearance_Design_Hint=0x7f090110; public static final int TextAppearance_Design_Snackbar_Message=0x7f090111; public static final int TextAppearance_Design_Tab=0x7f090112; public static final int TextAppearance_StatusBar_EventContent=0x7f09002d; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09002e; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09002f; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090030; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090031; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090113; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090114; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090115; public static final int Theme_AppCompat=0x7f090116; public static final int Theme_AppCompat_CompactMenu=0x7f090117; public static final int Theme_AppCompat_DayNight=0x7f090005; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f090006; public static final int Theme_AppCompat_DayNight_Dialog=0x7f090007; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090008; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090009; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f09000a; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f09000b; public static final int Theme_AppCompat_Dialog=0x7f090118; public static final int Theme_AppCompat_Dialog_Alert=0x7f090119; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f09011a; public static final int Theme_AppCompat_DialogWhenLarge=0x7f09011b; public static final int Theme_AppCompat_Light=0x7f09011c; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f09011d; public static final int Theme_AppCompat_Light_Dialog=0x7f09011e; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f09011f; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f090120; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f090121; public static final int Theme_AppCompat_Light_NoActionBar=0x7f090122; public static final int Theme_AppCompat_NoActionBar=0x7f090123; public static final int Theme_Design=0x7f090124; public static final int Theme_Design_BottomSheetDialog=0x7f090125; public static final int Theme_Design_Light=0x7f090126; public static final int Theme_Design_Light_BottomSheetDialog=0x7f090127; public static final int Theme_Design_Light_NoActionBar=0x7f090128; public static final int Theme_Design_NoActionBar=0x7f090129; public static final int ThemeOverlay_AppCompat=0x7f09012a; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f09012b; public static final int ThemeOverlay_AppCompat_Dark=0x7f09012c; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f09012d; public static final int ThemeOverlay_AppCompat_Dialog=0x7f09012e; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f09012f; public static final int ThemeOverlay_AppCompat_Light=0x7f090130; public static final int Widget_AppCompat_ActionBar=0x7f090131; public static final int Widget_AppCompat_ActionBar_Solid=0x7f090132; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090133; public static final int Widget_AppCompat_ActionBar_TabText=0x7f090134; public static final int Widget_AppCompat_ActionBar_TabView=0x7f090135; public static final int Widget_AppCompat_ActionButton=0x7f090136; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090137; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090138; public static final int Widget_AppCompat_ActionMode=0x7f090139; public static final int Widget_AppCompat_ActivityChooserView=0x7f09013a; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09013b; public static final int Widget_AppCompat_Button=0x7f09013c; public static final int Widget_AppCompat_Button_Borderless=0x7f09013d; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09013e; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09013f; public static final int Widget_AppCompat_Button_Colored=0x7f090140; public static final int Widget_AppCompat_Button_Small=0x7f090141; public static final int Widget_AppCompat_ButtonBar=0x7f090142; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090143; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090144; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090145; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090146; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090147; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090148; public static final int Widget_AppCompat_EditText=0x7f090149; public static final int Widget_AppCompat_ImageButton=0x7f09014a; public static final int Widget_AppCompat_Light_ActionBar=0x7f09014b; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f09014c; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f09014d; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09014e; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09014f; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090150; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090151; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090152; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090153; public static final int Widget_AppCompat_Light_ActionButton=0x7f090154; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090155; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090156; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090157; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090158; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090159; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f09015a; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f09015b; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f09015c; public static final int Widget_AppCompat_Light_PopupMenu=0x7f09015d; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09015e; public static final int Widget_AppCompat_Light_SearchView=0x7f09015f; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090160; public static final int Widget_AppCompat_ListMenuView=0x7f090161; public static final int Widget_AppCompat_ListPopupWindow=0x7f090162; public static final int Widget_AppCompat_ListView=0x7f090163; public static final int Widget_AppCompat_ListView_DropDown=0x7f090164; public static final int Widget_AppCompat_ListView_Menu=0x7f090165; public static final int Widget_AppCompat_NotificationActionContainer=0x7f090091; public static final int Widget_AppCompat_NotificationActionText=0x7f090092; public static final int Widget_AppCompat_PopupMenu=0x7f090166; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090167; public static final int Widget_AppCompat_PopupWindow=0x7f090168; public static final int Widget_AppCompat_ProgressBar=0x7f090169; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f09016a; public static final int Widget_AppCompat_RatingBar=0x7f09016b; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f09016c; public static final int Widget_AppCompat_RatingBar_Small=0x7f09016d; public static final int Widget_AppCompat_SearchView=0x7f09016e; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09016f; public static final int Widget_AppCompat_SeekBar=0x7f090170; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f090171; public static final int Widget_AppCompat_Spinner=0x7f090172; public static final int Widget_AppCompat_Spinner_DropDown=0x7f090173; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090174; public static final int Widget_AppCompat_Spinner_Underlined=0x7f090175; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090176; public static final int Widget_AppCompat_Toolbar=0x7f090177; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090178; public static final int Widget_Design_AppBarLayout=0x7f090093; public static final int Widget_Design_BottomNavigationView=0x7f090179; public static final int Widget_Design_BottomSheet_Modal=0x7f09017a; public static final int Widget_Design_CollapsingToolbar=0x7f09017b; public static final int Widget_Design_CoordinatorLayout=0x7f09017c; public static final int Widget_Design_FloatingActionButton=0x7f09017d; public static final int Widget_Design_NavigationView=0x7f09017e; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f09017f; public static final int Widget_Design_Snackbar=0x7f090180; public static final int Widget_Design_TabLayout=0x7f090001; public static final int Widget_Design_TextInputLayout=0x7f090181; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background com.suemsolutions.www.plantdoctortest:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.suemsolutions.www.plantdoctortest:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.suemsolutions.www.plantdoctortest:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.suemsolutions.www.plantdoctortest:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.suemsolutions.www.plantdoctortest:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.suemsolutions.www.plantdoctortest:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.suemsolutions.www.plantdoctortest:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.suemsolutions.www.plantdoctortest:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.suemsolutions.www.plantdoctortest:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.suemsolutions.www.plantdoctortest:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.suemsolutions.www.plantdoctortest:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.suemsolutions.www.plantdoctortest:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.suemsolutions.www.plantdoctortest:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.suemsolutions.www.plantdoctortest:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.suemsolutions.www.plantdoctortest:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.suemsolutions.www.plantdoctortest:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.suemsolutions.www.plantdoctortest:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.suemsolutions.www.plantdoctortest:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.suemsolutions.www.plantdoctortest:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.suemsolutions.www.plantdoctortest:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.suemsolutions.www.plantdoctortest:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.suemsolutions.www.plantdoctortest:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.suemsolutions.www.plantdoctortest:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.suemsolutions.www.plantdoctortest:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.suemsolutions.www.plantdoctortest:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.suemsolutions.www.plantdoctortest:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.suemsolutions.www.plantdoctortest:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.suemsolutions.www.plantdoctortest:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.suemsolutions.www.plantdoctortest:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetEndWithActions @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_contentInsetStartWithNavigation @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f010002, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01008c }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.suemsolutions.www.plantdoctortest:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.suemsolutions.www.plantdoctortest:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.suemsolutions.www.plantdoctortest:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.suemsolutions.www.plantdoctortest:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.suemsolutions.www.plantdoctortest:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.suemsolutions.www.plantdoctortest:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionMode_background @see #ActionMode_backgroundSplit @see #ActionMode_closeItemLayout @see #ActionMode_height @see #ActionMode_subtitleTextStyle @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { 0x7f010002, 0x7f010033, 0x7f010034, 0x7f010038, 0x7f01003a, 0x7f01004a }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.suemsolutions.www.plantdoctortest:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.suemsolutions.www.plantdoctortest:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01004b, 0x7f01004c }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.suemsolutions.www.plantdoctortest:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.suemsolutions.www.plantdoctortest:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.suemsolutions.www.plantdoctortest:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.suemsolutions.www.plantdoctortest:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle com.suemsolutions.www.plantdoctortest:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.suemsolutions.www.plantdoctortest:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#showTitle} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation com.suemsolutions.www.plantdoctortest:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded com.suemsolutions.www.plantdoctortest:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x7f010048, 0x7f010053 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:elevation */ public static final int AppBarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:expanded */ public static final int AppBarLayout_expanded = 2; /** Attributes that can be used with a AppBarLayoutStates. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.suemsolutions.www.plantdoctortest:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.suemsolutions.www.plantdoctortest:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010054, 0x7f010055 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#state_collapsed} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#state_collapsible} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible = 1; /** Attributes that can be used with a AppBarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.suemsolutions.www.plantdoctortest:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.suemsolutions.www.plantdoctortest:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010056, 0x7f010057 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat com.suemsolutions.www.plantdoctortest:srcCompat}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010058 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark com.suemsolutions.www.plantdoctortest:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.suemsolutions.www.plantdoctortest:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.suemsolutions.www.plantdoctortest:tickMarkTintMode}</code></td><td></td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010059, 0x7f01005a, 0x7f01005b }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.suemsolutions.www.plantdoctortest:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f01005c }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.suemsolutions.www.plantdoctortest:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.suemsolutions.www.plantdoctortest:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.suemsolutions.www.plantdoctortest:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.suemsolutions.www.plantdoctortest:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.suemsolutions.www.plantdoctortest:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.suemsolutions.www.plantdoctortest:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.suemsolutions.www.plantdoctortest:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.suemsolutions.www.plantdoctortest:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.suemsolutions.www.plantdoctortest:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.suemsolutions.www.plantdoctortest:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.suemsolutions.www.plantdoctortest:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.suemsolutions.www.plantdoctortest:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.suemsolutions.www.plantdoctortest:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.suemsolutions.www.plantdoctortest:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.suemsolutions.www.plantdoctortest:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.suemsolutions.www.plantdoctortest:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.suemsolutions.www.plantdoctortest:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.suemsolutions.www.plantdoctortest:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.suemsolutions.www.plantdoctortest:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.suemsolutions.www.plantdoctortest:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.suemsolutions.www.plantdoctortest:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.suemsolutions.www.plantdoctortest:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.suemsolutions.www.plantdoctortest:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.suemsolutions.www.plantdoctortest:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.suemsolutions.www.plantdoctortest:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.suemsolutions.www.plantdoctortest:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.suemsolutions.www.plantdoctortest:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.suemsolutions.www.plantdoctortest:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.suemsolutions.www.plantdoctortest:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.suemsolutions.www.plantdoctortest:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.suemsolutions.www.plantdoctortest:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.suemsolutions.www.plantdoctortest:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.suemsolutions.www.plantdoctortest:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.suemsolutions.www.plantdoctortest:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.suemsolutions.www.plantdoctortest:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.suemsolutions.www.plantdoctortest:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.suemsolutions.www.plantdoctortest:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.suemsolutions.www.plantdoctortest:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.suemsolutions.www.plantdoctortest:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.suemsolutions.www.plantdoctortest:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.suemsolutions.www.plantdoctortest:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.suemsolutions.www.plantdoctortest:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.suemsolutions.www.plantdoctortest:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.suemsolutions.www.plantdoctortest:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.suemsolutions.www.plantdoctortest:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.suemsolutions.www.plantdoctortest:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.suemsolutions.www.plantdoctortest:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.suemsolutions.www.plantdoctortest:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.suemsolutions.www.plantdoctortest:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.suemsolutions.www.plantdoctortest:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.suemsolutions.www.plantdoctortest:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.suemsolutions.www.plantdoctortest:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.suemsolutions.www.plantdoctortest:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.suemsolutions.www.plantdoctortest:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.suemsolutions.www.plantdoctortest:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.suemsolutions.www.plantdoctortest:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.suemsolutions.www.plantdoctortest:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.suemsolutions.www.plantdoctortest:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.suemsolutions.www.plantdoctortest:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.suemsolutions.www.plantdoctortest:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.suemsolutions.www.plantdoctortest:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.suemsolutions.www.plantdoctortest:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.suemsolutions.www.plantdoctortest:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.suemsolutions.www.plantdoctortest:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.suemsolutions.www.plantdoctortest:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.suemsolutions.www.plantdoctortest:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.suemsolutions.www.plantdoctortest:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.suemsolutions.www.plantdoctortest:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.suemsolutions.www.plantdoctortest:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.suemsolutions.www.plantdoctortest:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.suemsolutions.www.plantdoctortest:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.suemsolutions.www.plantdoctortest:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.suemsolutions.www.plantdoctortest:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.suemsolutions.www.plantdoctortest:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.suemsolutions.www.plantdoctortest:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.suemsolutions.www.plantdoctortest:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.suemsolutions.www.plantdoctortest:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.suemsolutions.www.plantdoctortest:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.suemsolutions.www.plantdoctortest:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.suemsolutions.www.plantdoctortest:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.suemsolutions.www.plantdoctortest:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.suemsolutions.www.plantdoctortest:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.suemsolutions.www.plantdoctortest:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.suemsolutions.www.plantdoctortest:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.suemsolutions.www.plantdoctortest:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.suemsolutions.www.plantdoctortest:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.suemsolutions.www.plantdoctortest:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.suemsolutions.www.plantdoctortest:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.suemsolutions.www.plantdoctortest:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.suemsolutions.www.plantdoctortest:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.suemsolutions.www.plantdoctortest:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.suemsolutions.www.plantdoctortest:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.suemsolutions.www.plantdoctortest:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.suemsolutions.www.plantdoctortest:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.suemsolutions.www.plantdoctortest:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.suemsolutions.www.plantdoctortest:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.suemsolutions.www.plantdoctortest:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.suemsolutions.www.plantdoctortest:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.suemsolutions.www.plantdoctortest:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.suemsolutions.www.plantdoctortest:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.suemsolutions.www.plantdoctortest:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.suemsolutions.www.plantdoctortest:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.suemsolutions.www.plantdoctortest:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.suemsolutions.www.plantdoctortest:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.suemsolutions.www.plantdoctortest:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.suemsolutions.www.plantdoctortest:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.suemsolutions.www.plantdoctortest:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.suemsolutions.www.plantdoctortest:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.suemsolutions.www.plantdoctortest:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.suemsolutions.www.plantdoctortest:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.suemsolutions.www.plantdoctortest:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.suemsolutions.www.plantdoctortest:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.suemsolutions.www.plantdoctortest:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.suemsolutions.www.plantdoctortest:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 95; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 93; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 96; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 101; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 102; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 103; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 104; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 105; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorAccent */ public static final int AppCompatTheme_colorAccent = 85; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 92; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 89; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 87; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 88; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 86; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 83; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 84; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 90; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:controlBackground */ public static final int AppCompatTheme_controlBackground = 91; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 106; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 114; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:panelBackground */ public static final int AppCompatTheme_panelBackground = 79; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 81; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 80; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 107; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 108; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 109; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 110; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 111; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 112; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:switchStyle */ public static final int AppCompatTheme_switchStyle = 113; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 78; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 97; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomNavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomNavigationView_elevation com.suemsolutions.www.plantdoctortest:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground com.suemsolutions.www.plantdoctortest:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint com.suemsolutions.www.plantdoctortest:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor com.suemsolutions.www.plantdoctortest:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu com.suemsolutions.www.plantdoctortest:menu}</code></td><td></td></tr> </table> @see #BottomNavigationView_elevation @see #BottomNavigationView_itemBackground @see #BottomNavigationView_itemIconTint @see #BottomNavigationView_itemTextColor @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView = { 0x7f010048, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#elevation} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemBackground} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemIconTint} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemTextColor} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#menu} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:menu */ public static final int BottomNavigationView_menu = 1; /** Attributes that can be used with a BottomSheetBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.suemsolutions.www.plantdoctortest:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.suemsolutions.www.plantdoctortest:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.suemsolutions.www.plantdoctortest:behavior_skipCollapsed}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Layout_behavior_hideable @see #BottomSheetBehavior_Layout_behavior_peekHeight @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout = { 0x7f0100ce, 0x7f0100cf, 0x7f0100d0 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#behavior_hideable} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#behavior_peekHeight} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#behavior_skipCollapsed} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking com.suemsolutions.www.plantdoctortest:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100d1 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CardView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardBackgroundColor com.suemsolutions.www.plantdoctortest:cardBackgroundColor}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardCornerRadius com.suemsolutions.www.plantdoctortest:cardCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardElevation com.suemsolutions.www.plantdoctortest:cardElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardMaxElevation com.suemsolutions.www.plantdoctortest:cardMaxElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.suemsolutions.www.plantdoctortest:cardPreventCornerOverlap}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardUseCompatPadding com.suemsolutions.www.plantdoctortest:cardUseCompatPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPadding com.suemsolutions.www.plantdoctortest:contentPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingBottom com.suemsolutions.www.plantdoctortest:contentPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingLeft com.suemsolutions.www.plantdoctortest:contentPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingRight com.suemsolutions.www.plantdoctortest:contentPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingTop com.suemsolutions.www.plantdoctortest:contentPaddingTop}</code></td><td></td></tr> </table> @see #CardView_android_minHeight @see #CardView_android_minWidth @see #CardView_cardBackgroundColor @see #CardView_cardCornerRadius @see #CardView_cardElevation @see #CardView_cardMaxElevation @see #CardView_cardPreventCornerOverlap @see #CardView_cardUseCompatPadding @see #CardView_contentPadding @see #CardView_contentPaddingBottom @see #CardView_contentPaddingLeft @see #CardView_contentPaddingRight @see #CardView_contentPaddingTop */ public static final int[] CardView = { 0x0101013f, 0x01010140, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #CardView} array. @attr name android:minHeight */ public static final int CardView_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #CardView} array. @attr name android:minWidth */ public static final int CardView_android_minWidth = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#cardBackgroundColor} attribute's value can be found in the {@link #CardView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:cardBackgroundColor */ public static final int CardView_cardBackgroundColor = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#cardCornerRadius} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:cardCornerRadius */ public static final int CardView_cardCornerRadius = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#cardElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:cardElevation */ public static final int CardView_cardElevation = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#cardMaxElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:cardMaxElevation */ public static final int CardView_cardMaxElevation = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#cardPreventCornerOverlap} attribute's value can be found in the {@link #CardView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#cardUseCompatPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentPadding */ public static final int CardView_contentPadding = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentPaddingBottom} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentPaddingBottom */ public static final int CardView_contentPaddingBottom = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentPaddingLeft} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentPaddingLeft */ public static final int CardView_contentPaddingLeft = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentPaddingRight} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentPaddingRight */ public static final int CardView_contentPaddingRight = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentPaddingTop} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentPaddingTop */ public static final int CardView_contentPaddingTop = 11; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.suemsolutions.www.plantdoctortest:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.suemsolutions.www.plantdoctortest:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.suemsolutions.www.plantdoctortest:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.suemsolutions.www.plantdoctortest:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.suemsolutions.www.plantdoctortest:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.suemsolutions.www.plantdoctortest:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.suemsolutions.www.plantdoctortest:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.suemsolutions.www.plantdoctortest:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.suemsolutions.www.plantdoctortest:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.suemsolutions.www.plantdoctortest:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.suemsolutions.www.plantdoctortest:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.suemsolutions.www.plantdoctortest:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.suemsolutions.www.plantdoctortest:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title com.suemsolutions.www.plantdoctortest:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.suemsolutions.www.plantdoctortest:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.suemsolutions.www.plantdoctortest:toolbarId}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_collapsedTitleGravity @see #CollapsingToolbarLayout_collapsedTitleTextAppearance @see #CollapsingToolbarLayout_contentScrim @see #CollapsingToolbarLayout_expandedTitleGravity @see #CollapsingToolbarLayout_expandedTitleMargin @see #CollapsingToolbarLayout_expandedTitleMarginBottom @see #CollapsingToolbarLayout_expandedTitleMarginEnd @see #CollapsingToolbarLayout_expandedTitleMarginStart @see #CollapsingToolbarLayout_expandedTitleMarginTop @see #CollapsingToolbarLayout_expandedTitleTextAppearance @see #CollapsingToolbarLayout_scrimAnimationDuration @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger @see #CollapsingToolbarLayout_statusBarScrim @see #CollapsingToolbarLayout_title @see #CollapsingToolbarLayout_titleEnabled @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout = { 0x7f01002f, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#scrimAnimationDuration} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#scrimVisibleHeightTrigger} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId = 10; /** Attributes that can be used with a CollapsingToolbarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.suemsolutions.www.plantdoctortest:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.suemsolutions.www.plantdoctortest:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f0100ec, 0x7f0100ed }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha com.suemsolutions.www.plantdoctortest:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f0100ee }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.suemsolutions.www.plantdoctortest:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.suemsolutions.www.plantdoctortest:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100ef, 0x7f0100f0 }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a ConstraintLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.suemsolutions.www.plantdoctortest:constraintSet}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.suemsolutions.www.plantdoctortest:layout_constraintBottom_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.suemsolutions.www.plantdoctortest:layout_constraintDimensionRatio}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.suemsolutions.www.plantdoctortest:layout_constraintGuide_begin}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.suemsolutions.www.plantdoctortest:layout_constraintGuide_end}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.suemsolutions.www.plantdoctortest:layout_constraintGuide_percent}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.suemsolutions.www.plantdoctortest:layout_constraintHeight_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.suemsolutions.www.plantdoctortest:layout_constraintHeight_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.suemsolutions.www.plantdoctortest:layout_constraintHeight_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.suemsolutions.www.plantdoctortest:layout_constraintLeft_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.suemsolutions.www.plantdoctortest:layout_constraintRight_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.suemsolutions.www.plantdoctortest:layout_constraintRight_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.suemsolutions.www.plantdoctortest:layout_constraintRight_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.suemsolutions.www.plantdoctortest:layout_constraintStart_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.suemsolutions.www.plantdoctortest:layout_constraintStart_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.suemsolutions.www.plantdoctortest:layout_constraintTop_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.suemsolutions.www.plantdoctortest:layout_constraintTop_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.suemsolutions.www.plantdoctortest:layout_constraintTop_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.suemsolutions.www.plantdoctortest:layout_constraintVertical_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.suemsolutions.www.plantdoctortest:layout_constraintVertical_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.suemsolutions.www.plantdoctortest:layout_constraintVertical_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.suemsolutions.www.plantdoctortest:layout_constraintWidth_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.suemsolutions.www.plantdoctortest:layout_constraintWidth_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.suemsolutions.www.plantdoctortest:layout_constraintWidth_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.suemsolutions.www.plantdoctortest:layout_editor_absoluteX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.suemsolutions.www.plantdoctortest:layout_editor_absoluteY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.suemsolutions.www.plantdoctortest:layout_goneMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.suemsolutions.www.plantdoctortest:layout_goneMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.suemsolutions.www.plantdoctortest:layout_goneMarginLeft}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.suemsolutions.www.plantdoctortest:layout_goneMarginRight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.suemsolutions.www.plantdoctortest:layout_goneMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.suemsolutions.www.plantdoctortest:layout_goneMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.suemsolutions.www.plantdoctortest:layout_optimizationLevel}</code></td><td></td></tr> </table> @see #ConstraintLayout_Layout_android_maxHeight @see #ConstraintLayout_Layout_android_maxWidth @see #ConstraintLayout_Layout_android_minHeight @see #ConstraintLayout_Layout_android_minWidth @see #ConstraintLayout_Layout_android_orientation @see #ConstraintLayout_Layout_constraintSet @see #ConstraintLayout_Layout_layout_constraintBaseline_creator @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf @see #ConstraintLayout_Layout_layout_constraintBottom_creator @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf @see #ConstraintLayout_Layout_layout_constraintDimensionRatio @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf @see #ConstraintLayout_Layout_layout_constraintGuide_begin @see #ConstraintLayout_Layout_layout_constraintGuide_end @see #ConstraintLayout_Layout_layout_constraintGuide_percent @see #ConstraintLayout_Layout_layout_constraintHeight_default @see #ConstraintLayout_Layout_layout_constraintHeight_max @see #ConstraintLayout_Layout_layout_constraintHeight_min @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight @see #ConstraintLayout_Layout_layout_constraintLeft_creator @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf @see #ConstraintLayout_Layout_layout_constraintRight_creator @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf @see #ConstraintLayout_Layout_layout_constraintTop_creator @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf @see #ConstraintLayout_Layout_layout_constraintVertical_bias @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle @see #ConstraintLayout_Layout_layout_constraintVertical_weight @see #ConstraintLayout_Layout_layout_constraintWidth_default @see #ConstraintLayout_Layout_layout_constraintWidth_max @see #ConstraintLayout_Layout_layout_constraintWidth_min @see #ConstraintLayout_Layout_layout_editor_absoluteX @see #ConstraintLayout_Layout_layout_editor_absoluteY @see #ConstraintLayout_Layout_layout_goneMarginBottom @see #ConstraintLayout_Layout_layout_goneMarginEnd @see #ConstraintLayout_Layout_layout_goneMarginLeft @see #ConstraintLayout_Layout_layout_goneMarginRight @see #ConstraintLayout_Layout_layout_goneMarginStart @see #ConstraintLayout_Layout_layout_goneMarginTop @see #ConstraintLayout_Layout_layout_optimizationLevel */ public static final int[] ConstraintLayout_Layout = { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f010000, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; /** <p>This symbol is the offset where the {@link android.R.attr#maxHeight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:maxHeight */ public static final int ConstraintLayout_Layout_android_maxHeight = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:maxWidth */ public static final int ConstraintLayout_Layout_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:minHeight */ public static final int ConstraintLayout_Layout_android_minHeight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:minWidth */ public static final int ConstraintLayout_Layout_android_minWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:orientation */ public static final int ConstraintLayout_Layout_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#constraintSet} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBaseline_creator} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBaseline_toBaselineOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBottom_creator} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBottom_toBottomOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBottom_toTopOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintDimensionRatio} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintEnd_toEndOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintEnd_toStartOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintGuide_begin} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintGuide_end} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintGuide_percent} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHeight_default} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHeight_max} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHeight_min} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHorizontal_bias} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHorizontal_chainStyle} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHorizontal_weight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintLeft_creator} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintLeft_toLeftOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintLeft_toRightOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintRight_creator} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintRight_toLeftOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintRight_toRightOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintStart_toEndOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintStart_toStartOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintTop_creator} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintTop_toBottomOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintTop_toTopOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintVertical_bias} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintVertical_chainStyle} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintVertical_weight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintWidth_default} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintWidth_max} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintWidth_min} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_editor_absoluteX} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_editor_absoluteY} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginBottom} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginEnd} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginLeft} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginRight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginStart} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginTop} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_optimizationLevel} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>1</td><td></td></tr> <tr><td><code>all</code></td><td>2</td><td></td></tr> <tr><td><code>basic</code></td><td>4</td><td></td></tr> <tr><td><code>chains</code></td><td>8</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_optimizationLevel */ public static final int ConstraintLayout_Layout_layout_optimizationLevel = 48; /** Attributes that can be used with a ConstraintSet. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.suemsolutions.www.plantdoctortest:layout_constraintBottom_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.suemsolutions.www.plantdoctortest:layout_constraintDimensionRatio}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.suemsolutions.www.plantdoctortest:layout_constraintGuide_begin}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.suemsolutions.www.plantdoctortest:layout_constraintGuide_end}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.suemsolutions.www.plantdoctortest:layout_constraintGuide_percent}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.suemsolutions.www.plantdoctortest:layout_constraintHeight_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.suemsolutions.www.plantdoctortest:layout_constraintHeight_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.suemsolutions.www.plantdoctortest:layout_constraintHeight_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.suemsolutions.www.plantdoctortest:layout_constraintLeft_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.suemsolutions.www.plantdoctortest:layout_constraintRight_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.suemsolutions.www.plantdoctortest:layout_constraintRight_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.suemsolutions.www.plantdoctortest:layout_constraintRight_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.suemsolutions.www.plantdoctortest:layout_constraintStart_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.suemsolutions.www.plantdoctortest:layout_constraintStart_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.suemsolutions.www.plantdoctortest:layout_constraintTop_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.suemsolutions.www.plantdoctortest:layout_constraintTop_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.suemsolutions.www.plantdoctortest:layout_constraintTop_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.suemsolutions.www.plantdoctortest:layout_constraintVertical_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.suemsolutions.www.plantdoctortest:layout_constraintVertical_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.suemsolutions.www.plantdoctortest:layout_constraintVertical_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.suemsolutions.www.plantdoctortest:layout_constraintWidth_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.suemsolutions.www.plantdoctortest:layout_constraintWidth_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.suemsolutions.www.plantdoctortest:layout_constraintWidth_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.suemsolutions.www.plantdoctortest:layout_editor_absoluteX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.suemsolutions.www.plantdoctortest:layout_editor_absoluteY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.suemsolutions.www.plantdoctortest:layout_goneMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.suemsolutions.www.plantdoctortest:layout_goneMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.suemsolutions.www.plantdoctortest:layout_goneMarginLeft}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.suemsolutions.www.plantdoctortest:layout_goneMarginRight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.suemsolutions.www.plantdoctortest:layout_goneMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.suemsolutions.www.plantdoctortest:layout_goneMarginTop}</code></td><td></td></tr> </table> @see #ConstraintSet_android_alpha @see #ConstraintSet_android_elevation @see #ConstraintSet_android_id @see #ConstraintSet_android_layout_height @see #ConstraintSet_android_layout_marginBottom @see #ConstraintSet_android_layout_marginEnd @see #ConstraintSet_android_layout_marginLeft @see #ConstraintSet_android_layout_marginRight @see #ConstraintSet_android_layout_marginStart @see #ConstraintSet_android_layout_marginTop @see #ConstraintSet_android_layout_width @see #ConstraintSet_android_orientation @see #ConstraintSet_android_rotationX @see #ConstraintSet_android_rotationY @see #ConstraintSet_android_scaleX @see #ConstraintSet_android_scaleY @see #ConstraintSet_android_transformPivotX @see #ConstraintSet_android_transformPivotY @see #ConstraintSet_android_translationX @see #ConstraintSet_android_translationY @see #ConstraintSet_android_translationZ @see #ConstraintSet_android_visibility @see #ConstraintSet_layout_constraintBaseline_creator @see #ConstraintSet_layout_constraintBaseline_toBaselineOf @see #ConstraintSet_layout_constraintBottom_creator @see #ConstraintSet_layout_constraintBottom_toBottomOf @see #ConstraintSet_layout_constraintBottom_toTopOf @see #ConstraintSet_layout_constraintDimensionRatio @see #ConstraintSet_layout_constraintEnd_toEndOf @see #ConstraintSet_layout_constraintEnd_toStartOf @see #ConstraintSet_layout_constraintGuide_begin @see #ConstraintSet_layout_constraintGuide_end @see #ConstraintSet_layout_constraintGuide_percent @see #ConstraintSet_layout_constraintHeight_default @see #ConstraintSet_layout_constraintHeight_max @see #ConstraintSet_layout_constraintHeight_min @see #ConstraintSet_layout_constraintHorizontal_bias @see #ConstraintSet_layout_constraintHorizontal_chainStyle @see #ConstraintSet_layout_constraintHorizontal_weight @see #ConstraintSet_layout_constraintLeft_creator @see #ConstraintSet_layout_constraintLeft_toLeftOf @see #ConstraintSet_layout_constraintLeft_toRightOf @see #ConstraintSet_layout_constraintRight_creator @see #ConstraintSet_layout_constraintRight_toLeftOf @see #ConstraintSet_layout_constraintRight_toRightOf @see #ConstraintSet_layout_constraintStart_toEndOf @see #ConstraintSet_layout_constraintStart_toStartOf @see #ConstraintSet_layout_constraintTop_creator @see #ConstraintSet_layout_constraintTop_toBottomOf @see #ConstraintSet_layout_constraintTop_toTopOf @see #ConstraintSet_layout_constraintVertical_bias @see #ConstraintSet_layout_constraintVertical_chainStyle @see #ConstraintSet_layout_constraintVertical_weight @see #ConstraintSet_layout_constraintWidth_default @see #ConstraintSet_layout_constraintWidth_max @see #ConstraintSet_layout_constraintWidth_min @see #ConstraintSet_layout_editor_absoluteX @see #ConstraintSet_layout_editor_absoluteY @see #ConstraintSet_layout_goneMarginBottom @see #ConstraintSet_layout_goneMarginEnd @see #ConstraintSet_layout_goneMarginLeft @see #ConstraintSet_layout_goneMarginRight @see #ConstraintSet_layout_goneMarginStart @see #ConstraintSet_layout_goneMarginTop */ public static final int[] ConstraintSet = { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d }; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:alpha */ public static final int ConstraintSet_android_alpha = 9; /** <p>This symbol is the offset where the {@link android.R.attr#elevation} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:elevation */ public static final int ConstraintSet_android_elevation = 21; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:id */ public static final int ConstraintSet_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_height */ public static final int ConstraintSet_android_layout_height = 4; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginBottom */ public static final int ConstraintSet_android_layout_marginBottom = 8; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginEnd */ public static final int ConstraintSet_android_layout_marginEnd = 19; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginLeft */ public static final int ConstraintSet_android_layout_marginLeft = 5; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginRight */ public static final int ConstraintSet_android_layout_marginRight = 7; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginStart */ public static final int ConstraintSet_android_layout_marginStart = 18; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginTop */ public static final int ConstraintSet_android_layout_marginTop = 6; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_width */ public static final int ConstraintSet_android_layout_width = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:orientation */ public static final int ConstraintSet_android_orientation = 0; /** <p>This symbol is the offset where the {@link android.R.attr#rotationX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:rotationX */ public static final int ConstraintSet_android_rotationX = 16; /** <p>This symbol is the offset where the {@link android.R.attr#rotationY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:rotationY */ public static final int ConstraintSet_android_rotationY = 17; /** <p>This symbol is the offset where the {@link android.R.attr#scaleX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:scaleX */ public static final int ConstraintSet_android_scaleX = 14; /** <p>This symbol is the offset where the {@link android.R.attr#scaleY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:scaleY */ public static final int ConstraintSet_android_scaleY = 15; /** <p>This symbol is the offset where the {@link android.R.attr#transformPivotX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:transformPivotX */ public static final int ConstraintSet_android_transformPivotX = 10; /** <p>This symbol is the offset where the {@link android.R.attr#transformPivotY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:transformPivotY */ public static final int ConstraintSet_android_transformPivotY = 11; /** <p>This symbol is the offset where the {@link android.R.attr#translationX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:translationX */ public static final int ConstraintSet_android_translationX = 12; /** <p>This symbol is the offset where the {@link android.R.attr#translationY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:translationY */ public static final int ConstraintSet_android_translationY = 13; /** <p>This symbol is the offset where the {@link android.R.attr#translationZ} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:translationZ */ public static final int ConstraintSet_android_translationZ = 20; /** <p>This symbol is the offset where the {@link android.R.attr#visibility} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:visibility */ public static final int ConstraintSet_android_visibility = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBaseline_creator} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator = 22; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBaseline_toBaselineOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBottom_creator} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator = 24; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBottom_toBottomOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintBottom_toTopOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintDimensionRatio} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio = 27; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintEnd_toEndOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintEnd_toStartOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintGuide_begin} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin = 30; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintGuide_end} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end = 31; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintGuide_percent} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent = 32; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHeight_default} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default = 33; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHeight_max} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max = 34; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHeight_min} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min = 35; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHorizontal_bias} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias = 36; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHorizontal_chainStyle} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintHorizontal_weight} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight = 38; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintLeft_creator} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator = 39; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintLeft_toLeftOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintLeft_toRightOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintRight_creator} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator = 42; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintRight_toLeftOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintRight_toRightOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf = 44; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintStart_toEndOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf = 45; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintStart_toStartOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf = 46; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintTop_creator} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator = 47; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintTop_toBottomOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintTop_toTopOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf = 49; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintVertical_bias} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias = 50; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintVertical_chainStyle} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintVertical_weight} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight = 52; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintWidth_default} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default = 53; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintWidth_max} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max = 54; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_constraintWidth_min} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min = 55; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_editor_absoluteX} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX = 56; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_editor_absoluteY} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY = 57; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginBottom} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom = 58; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginEnd} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd = 59; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginLeft} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft = 60; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginRight} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight = 61; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginStart} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart = 62; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_goneMarginTop} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop = 63; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines com.suemsolutions.www.plantdoctortest:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.suemsolutions.www.plantdoctortest:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f0100f1, 0x7f0100f2 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.suemsolutions.www.plantdoctortest:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.suemsolutions.www.plantdoctortest:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.suemsolutions.www.plantdoctortest:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.suemsolutions.www.plantdoctortest:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.suemsolutions.www.plantdoctortest:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.suemsolutions.www.plantdoctortest:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_Layout_android_layout_gravity @see #CoordinatorLayout_Layout_layout_anchor @see #CoordinatorLayout_Layout_layout_anchorGravity @see #CoordinatorLayout_Layout_layout_behavior @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges @see #CoordinatorLayout_Layout_layout_insetEdge @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_dodgeInsetEdges} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_insetEdge} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline = 3; /** Attributes that can be used with a DesignTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.suemsolutions.www.plantdoctortest:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.suemsolutions.www.plantdoctortest:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError com.suemsolutions.www.plantdoctortest:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f0100f9, 0x7f0100fa, 0x7f0100fb }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:textColorError */ public static final int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.suemsolutions.www.plantdoctortest:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.suemsolutions.www.plantdoctortest:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.suemsolutions.www.plantdoctortest:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.suemsolutions.www.plantdoctortest:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.suemsolutions.www.plantdoctortest:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.suemsolutions.www.plantdoctortest:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.suemsolutions.www.plantdoctortest:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.suemsolutions.www.plantdoctortest:thickness}</code></td><td></td></tr> </table> @see #DrawerArrowToggle_arrowHeadLength @see #DrawerArrowToggle_arrowShaftLength @see #DrawerArrowToggle_barLength @see #DrawerArrowToggle_color @see #DrawerArrowToggle_drawableSize @see #DrawerArrowToggle_gapBetweenBars @see #DrawerArrowToggle_spinBars @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint com.suemsolutions.www.plantdoctortest:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.suemsolutions.www.plantdoctortest:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth com.suemsolutions.www.plantdoctortest:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation com.suemsolutions.www.plantdoctortest:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize com.suemsolutions.www.plantdoctortest:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.suemsolutions.www.plantdoctortest:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor com.suemsolutions.www.plantdoctortest:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.suemsolutions.www.plantdoctortest:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f010048, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f01016f, 0x7f010170 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:borderWidth */ public static final int FloatingActionButton_borderWidth = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#fabSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:fabSize */ public static final int FloatingActionButton_fabSize = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:rippleColor */ public static final int FloatingActionButton_rippleColor = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#useCompatPadding} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 5; /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.suemsolutions.www.plantdoctortest:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010109 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#behavior_autoHide} attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.suemsolutions.www.plantdoctortest:foregroundInsidePadding}</code></td><td></td></tr> </table> @see #ForegroundLinearLayout_android_foreground @see #ForegroundLinearLayout_android_foregroundGravity @see #ForegroundLinearLayout_foregroundInsidePadding */ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f01010a }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearConstraintLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr> </table> @see #LinearConstraintLayout_android_orientation */ public static final int[] LinearConstraintLayout = { 0x010100c4 }; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearConstraintLayout} array. @attr name android:orientation */ public static final int LinearConstraintLayout_android_orientation = 0; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.suemsolutions.www.plantdoctortest:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.suemsolutions.www.plantdoctortest:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.suemsolutions.www.plantdoctortest:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.suemsolutions.www.plantdoctortest:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010037, 0x7f01010b, 0x7f01010c, 0x7f01010d }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.suemsolutions.www.plantdoctortest:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.suemsolutions.www.plantdoctortest:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.suemsolutions.www.plantdoctortest:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.suemsolutions.www.plantdoctortest:showAsAction}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_showAsAction */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.suemsolutions.www.plantdoctortest:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.suemsolutions.www.plantdoctortest:subMenuArrow}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing @see #MenuView_subMenuArrow */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010112, 0x7f010113 }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:subMenuArrow */ public static final int MenuView_subMenuArrow = 8; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation com.suemsolutions.www.plantdoctortest:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout com.suemsolutions.www.plantdoctortest:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground com.suemsolutions.www.plantdoctortest:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint com.suemsolutions.www.plantdoctortest:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance com.suemsolutions.www.plantdoctortest:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor com.suemsolutions.www.plantdoctortest:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu com.suemsolutions.www.plantdoctortest:menu}</code></td><td></td></tr> </table> @see #NavigationView_android_background @see #NavigationView_android_fitsSystemWindows @see #NavigationView_android_maxWidth @see #NavigationView_elevation @see #NavigationView_headerLayout @see #NavigationView_itemBackground @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010048, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:menu */ public static final int NavigationView_menu = 4; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.suemsolutions.www.plantdoctortest:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f01011a }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.suemsolutions.www.plantdoctortest:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f01011b }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecycleListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.suemsolutions.www.plantdoctortest:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.suemsolutions.www.plantdoctortest:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f01011c, 0x7f01011d }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#paddingBottomNoButtons} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#paddingTopNoTitle} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle = 1; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.suemsolutions.www.plantdoctortest:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.suemsolutions.www.plantdoctortest:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.suemsolutions.www.plantdoctortest:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.suemsolutions.www.plantdoctortest:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 5; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.suemsolutions.www.plantdoctortest:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010122 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.suemsolutions.www.plantdoctortest:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.suemsolutions.www.plantdoctortest:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f010123 }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.suemsolutions.www.plantdoctortest:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.suemsolutions.www.plantdoctortest:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.suemsolutions.www.plantdoctortest:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.suemsolutions.www.plantdoctortest:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.suemsolutions.www.plantdoctortest:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.suemsolutions.www.plantdoctortest:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.suemsolutions.www.plantdoctortest:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.suemsolutions.www.plantdoctortest:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.suemsolutions.www.plantdoctortest:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.suemsolutions.www.plantdoctortest:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.suemsolutions.www.plantdoctortest:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.suemsolutions.www.plantdoctortest:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.suemsolutions.www.plantdoctortest:voiceIcon}</code></td><td></td></tr> </table> @see #SearchView_android_focusable @see #SearchView_android_imeOptions @see #SearchView_android_inputType @see #SearchView_android_maxWidth @see #SearchView_closeIcon @see #SearchView_commitIcon @see #SearchView_defaultQueryHint @see #SearchView_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchHintIcon @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation com.suemsolutions.www.plantdoctortest:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.suemsolutions.www.plantdoctortest:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010048, 0x7f010131 }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.suemsolutions.www.plantdoctortest:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f010049 }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.suemsolutions.www.plantdoctortest:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.suemsolutions.www.plantdoctortest:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.suemsolutions.www.plantdoctortest:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.suemsolutions.www.plantdoctortest:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.suemsolutions.www.plantdoctortest:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.suemsolutions.www.plantdoctortest:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.suemsolutions.www.plantdoctortest:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.suemsolutions.www.plantdoctortest:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.suemsolutions.www.plantdoctortest:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.suemsolutions.www.plantdoctortest:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.suemsolutions.www.plantdoctortest:trackTintMode}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_thumbTint @see #SwitchCompat_thumbTintMode @see #SwitchCompat_track @see #SwitchCompat_trackTint @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010132, 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:trackTintMode */ public static final int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TabItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> </table> @see #TabItem_android_icon @see #TabItem_android_layout @see #TabItem_android_text */ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f }; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #TabItem} array. @attr name android:icon */ public static final int TabItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #TabItem} array. @attr name android:layout */ public static final int TabItem_android_layout = 1; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #TabItem} array. @attr name android:text */ public static final int TabItem_android_text = 2; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground com.suemsolutions.www.plantdoctortest:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart com.suemsolutions.www.plantdoctortest:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity com.suemsolutions.www.plantdoctortest:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor com.suemsolutions.www.plantdoctortest:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.suemsolutions.www.plantdoctortest:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth com.suemsolutions.www.plantdoctortest:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth com.suemsolutions.www.plantdoctortest:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode com.suemsolutions.www.plantdoctortest:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding com.suemsolutions.www.plantdoctortest:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom com.suemsolutions.www.plantdoctortest:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd com.suemsolutions.www.plantdoctortest:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart com.suemsolutions.www.plantdoctortest:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop com.suemsolutions.www.plantdoctortest:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.suemsolutions.www.plantdoctortest:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance com.suemsolutions.www.plantdoctortest:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor com.suemsolutions.www.plantdoctortest:tabTextColor}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabMaxWidth @see #TabLayout_tabMinWidth @see #TabLayout_tabMode @see #TabLayout_tabPadding @see #TabLayout_tabPaddingBottom @see #TabLayout_tabPaddingEnd @see #TabLayout_tabPaddingStart @see #TabLayout_tabPaddingTop @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor */ public static final int[] TabLayout = { 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c }; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:tabTextColor */ public static final int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.suemsolutions.www.plantdoctortest:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textColorHint @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01005c }; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 8; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.suemsolutions.www.plantdoctortest:textAllCaps */ public static final int TextAppearance_textAllCaps = 9; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled com.suemsolutions.www.plantdoctortest:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength com.suemsolutions.www.plantdoctortest:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.suemsolutions.www.plantdoctortest:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.suemsolutions.www.plantdoctortest:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled com.suemsolutions.www.plantdoctortest:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.suemsolutions.www.plantdoctortest:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.suemsolutions.www.plantdoctortest:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled com.suemsolutions.www.plantdoctortest:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.suemsolutions.www.plantdoctortest:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.suemsolutions.www.plantdoctortest:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.suemsolutions.www.plantdoctortest:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.suemsolutions.www.plantdoctortest:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.suemsolutions.www.plantdoctortest:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.suemsolutions.www.plantdoctortest:passwordToggleTintMode}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_hintAnimationEnabled @see #TextInputLayout_hintEnabled @see #TextInputLayout_hintTextAppearance @see #TextInputLayout_passwordToggleContentDescription @see #TextInputLayout_passwordToggleDrawable @see #TextInputLayout_passwordToggleEnabled @see #TextInputLayout_passwordToggleTint @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159, 0x7f01015a }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static final int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#hintEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#passwordToggleContentDescription} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#passwordToggleDrawable} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#passwordToggleEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#passwordToggleTint} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#passwordToggleTintMode} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode = 15; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity com.suemsolutions.www.plantdoctortest:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.suemsolutions.www.plantdoctortest:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.suemsolutions.www.plantdoctortest:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.suemsolutions.www.plantdoctortest:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.suemsolutions.www.plantdoctortest:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.suemsolutions.www.plantdoctortest:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.suemsolutions.www.plantdoctortest:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.suemsolutions.www.plantdoctortest:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.suemsolutions.www.plantdoctortest:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.suemsolutions.www.plantdoctortest:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.suemsolutions.www.plantdoctortest:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.suemsolutions.www.plantdoctortest:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.suemsolutions.www.plantdoctortest:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.suemsolutions.www.plantdoctortest:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.suemsolutions.www.plantdoctortest:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.suemsolutions.www.plantdoctortest:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.suemsolutions.www.plantdoctortest:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.suemsolutions.www.plantdoctortest:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.suemsolutions.www.plantdoctortest:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.suemsolutions.www.plantdoctortest:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.suemsolutions.www.plantdoctortest:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.suemsolutions.www.plantdoctortest:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.suemsolutions.www.plantdoctortest:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.suemsolutions.www.plantdoctortest:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.suemsolutions.www.plantdoctortest:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.suemsolutions.www.plantdoctortest:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.suemsolutions.www.plantdoctortest:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_buttonGravity @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetEndWithActions @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_contentInsetStartWithNavigation @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMargin @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01002f, 0x7f010032, 0x7f010036, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010049, 0x7f01015b, 0x7f01015c, 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169, 0x7f01016a, 0x7f01016b }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.suemsolutions.www.plantdoctortest:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.suemsolutions.www.plantdoctortest:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.suemsolutions.www.plantdoctortest:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f01016c, 0x7f01016d, 0x7f01016e }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.suemsolutions.www.plantdoctortest:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.suemsolutions.www.plantdoctortest:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.suemsolutions.www.plantdoctortest:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f01016f, 0x7f010170 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.suemsolutions.www.plantdoctortest:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.suemsolutions.www.plantdoctortest.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.suemsolutions.www.plantdoctortest:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode = 2; /** Attributes that can be used with a ViewStubCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
59.518361
199
0.66969
0078d037f8867169c5ace68d06634f195237c38f
7,362
/* Derby - Class com.pivotal.gemfirexd.internal.iapi.sql.compile.TypeCompiler Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package com.pivotal.gemfirexd.internal.iapi.sql.compile; import com.pivotal.gemfirexd.internal.iapi.error.StandardException; import com.pivotal.gemfirexd.internal.iapi.reference.Limits; import com.pivotal.gemfirexd.internal.iapi.services.compiler.LocalField; import com.pivotal.gemfirexd.internal.iapi.services.compiler.MethodBuilder; import com.pivotal.gemfirexd.internal.iapi.services.loader.ClassFactory; import com.pivotal.gemfirexd.internal.iapi.types.DataTypeDescriptor; import com.pivotal.gemfirexd.internal.iapi.types.TypeId; /** * This interface defines methods associated with a TypeId that are used * by the compiler. */ public interface TypeCompiler { /** * Various fixed numbers related to datatypes. */ // Need to leave space for '-' public static final int LONGINT_MAXWIDTH_AS_CHAR = 20; // Need to leave space for '-' public static final int INT_MAXWIDTH_AS_CHAR = 11; // Need to leave space for '-' public static final int SMALLINT_MAXWIDTH_AS_CHAR = 6; // Need to leave space for '-' public static final int TINYINT_MAXWIDTH_AS_CHAR = 4; // Need to leave space for '-' and decimal point public static final int DOUBLE_MAXWIDTH_AS_CHAR = 54; // Need to leave space for '-' and decimal point public static final int REAL_MAXWIDTH_AS_CHAR = 25; public static final int DEFAULT_DECIMAL_PRECISION = Limits.DB2_DEFAULT_DECIMAL_PRECISION; public static final int DEFAULT_DECIMAL_SCALE = Limits.DB2_DEFAULT_DECIMAL_SCALE; public static final int MAX_DECIMAL_PRECISION_SCALE = Limits.DB2_MAX_DECIMAL_PRECISION_SCALE; public static final int BOOLEAN_MAXWIDTH_AS_CHAR = 5; public static final String PLUS_OP = "+"; public static final String DIVIDE_OP = "/"; public static final String MINUS_OP = "-"; public static final String TIMES_OP = "*"; public static final String SUM_OP = "sum"; public static final String AVG_OP = "avg"; public static final String MOD_OP = "mod"; /** * Type resolution methods on binary operators * * @param leftType The type of the left parameter * @param rightType The type of the right parameter * @param operator The name of the operator (e.g. "+"). * * @return The type of the result * * @exception StandardException Thrown on error */ DataTypeDescriptor resolveArithmeticOperation( DataTypeDescriptor leftType, DataTypeDescriptor rightType, String operator ) throws StandardException; /** * Determine if this type can be CONVERTed to some other type * * @param otherType The CompilationType of the other type to compare * this type to * * @param forDataTypeFunction true if this is a type function that * requires more liberal behavior (e.g DOUBLE can convert a char but * you cannot cast a CHAR to double. * * @return true if the types can be converted, false if conversion * is not allowed */ boolean convertible(TypeId otherType, boolean forDataTypeFunction); /** * Determine if this type is compatible to some other type * (e.g. COALESCE(thistype, othertype)). * * @param otherType The CompilationType of the other type to compare * this type to * * @return true if the types are compatible, false if not compatible */ boolean compatible(TypeId otherType); /** * Determine if this type can have a value of another type stored into it. * Note that direction is relevant here: the test is that the otherType * is storable into this type. * * @param otherType The TypeId of the other type to compare this type to * @param cf A ClassFactory * * @return true if the other type can be stored in a column of this type. */ boolean storable(TypeId otherType, ClassFactory cf); /** * Get the name of the interface for this type. For example, the interface * for a SQLInteger is NumberDataValue. The full path name of the type * is returned. * * @return The name of the interface for this type. */ String interfaceName(); /** * Get the name of the corresponding Java type. For numerics and booleans * we will get the corresponding Java primitive type. e * Each SQL type has a corresponding Java type. When a SQL value is * passed to a Java method, it is translated to its corresponding Java * type. For example, a SQL Integer will be mapped to a Java int, but * a SQL date will be mapped to a java.sql.Date. * * @return The name of the corresponding Java primitive type. */ String getCorrespondingPrimitiveTypeName(); /** * Get the method name for getting out the corresponding primitive * Java type from a DataValueDescriptor. * * @return String The method call name for getting the * corresponding primitive Java type. */ String getPrimitiveMethodName(); /** * Generate the code necessary to produce a SQL null of the appropriate * type. The stack must contain a DataValueFactory and a null or a value * of the correct type (interfaceName()). * * @param mb The method to put the expression in * @param collationType For character DVDs, this will be used to determine * what Collator should be associated with the DVD which in turn will * decide whether to generate CollatorSQLcharDVDs or SQLcharDVDs. */ void generateNull(MethodBuilder mb, int collationType); /** * Generate the code necessary to produce a SQL value based on * a value. The value's type is assumed to match * the type of this TypeId. For example, a TypeId * for the SQL int type should be given an value that evaluates * to a Java int or Integer. * * If the type of the value is incorrect, the generated code will * not work. * * The stack must contain data value factory value. * * @param mb The method to put the expression in * @param collationType For character DVDs, this will be used to determine * what Collator should be associated with the DVD which in turn will * decide whether to generate CollatorSQLcharDVDs or SQLcharDVDs. For * other types of DVDs, this parameter will be ignored. * @param field LocalField */ void generateDataValue( MethodBuilder mb, int collationType, LocalField field); /** * Return the maximum width for this data type when cast to a char type. * * @param dts The associated DataTypeDescriptor for this TypeId. * * @return int The maximum width for this data type when cast to a char type. */ int getCastToCharWidth(DataTypeDescriptor dts); }
34.24186
94
0.732138
121f25b28caa481363c40e73e82a6bcb92d61511
1,204
/* * Copyright 2014 Google Inc. All rights reserved. * * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF * ANY KIND, either express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.google.maps.errors; /** * Indicates that no results were returned. * * <p> * In some cases, this will be treated as a success state and you will only see * an empty array. For time zone data, it means that no time zone information * could be found for the specified position or time. Confirm that the request * is for a location on land, and not over water. */ public class ZeroResultsException extends ApiException { private static final long serialVersionUID = -9096790004183184907L; public ZeroResultsException(String errorMessage) { super(errorMessage); } }
34.4
91
0.748339
8d877d514297b31b7a7b7e1281cd3dcd868e27d5
3,939
package com.riversoft.weixin.qy.base; import com.riversoft.weixin.common.exception.WxRuntimeException; import com.riversoft.weixin.common.util.XmlObjectMapper; import org.apache.commons.io.IOUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.IOException; import java.io.InputStream; /** * Created by exizhai on 9/26/2015. */ public class CorpSetting { private static Logger logger = LoggerFactory.getLogger(CorpSetting.class); private static CorpSetting defaultSetting = null; private String corpId; private String corpSecret; private String tokenHolderClass; public CorpSetting() { } public CorpSetting(String corpId, String corpSecret) { this.corpId = corpId; this.corpSecret = corpSecret; } public static void setDefault(CorpSetting corpSetting) { defaultSetting = corpSetting; } public static CorpSetting defaultSettings() { if (defaultSetting == null) { loadFromSystemProperties(); } if (defaultSetting == null) { loadFromClasspath(); } if (defaultSetting == null) { throw new WxRuntimeException(999, "当前系统没有设置缺省的corpId和corpSecret,请使用setDefault方法或者在classpath下面创建wx-qy-settings.xml文件."); } return defaultSetting; } private static void loadFromSystemProperties() { if (System.getProperties().contains("qyconfig")) { logger.info("loading qy configuration from system properties..."); String xml = System.getProperties().getProperty("qyconfig", ""); logger.info("qyconfig: {}", xml); if (xml == null || "".equals(xml)) { return; } else { try { CorpSetting defaultSettings = XmlObjectMapper.defaultMapper().fromXml(xml, CorpSetting.class); defaultSetting = defaultSettings; } catch (IOException e) { } } } } private static void loadFromClasspath() { try { InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("wx-qy-settings-test.xml"); if (inputStream == null) { inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("wx-qy-settings.xml"); } if (inputStream != null) { String xml = IOUtils.toString(inputStream); CorpSetting defaultSettings = XmlObjectMapper.defaultMapper().fromXml(xml, CorpSetting.class); defaultSetting = defaultSettings; } } catch (IOException e) { logger.error("read settings from wx-qy-settings-test.xml or wx-qy-settings.xml failed:", e); } } public String getCorpId() { return corpId; } public void setCorpId(String corpId) { this.corpId = corpId; } public String getCorpSecret() { return corpSecret; } public void setCorpSecret(String corpSecret) { this.corpSecret = corpSecret; } public String getTokenHolderClass() { return tokenHolderClass; } public void setTokenHolderClass(String tokenHolderClass) { this.tokenHolderClass = tokenHolderClass; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; CorpSetting that = (CorpSetting) o; if (!corpId.equals(that.corpId)) return false; return corpSecret.equals(that.corpSecret); } @Override public int hashCode() { int result = corpId.hashCode(); result = 31 * result + corpSecret.hashCode(); return result; } }
30.3
133
0.600406
1ff88d3232560f1db80382997fdd0c81ba9bd993
2,595
package com.notepad.adapter; import android.content.Context; import android.support.annotation.NonNull; import android.support.v7.widget.AppCompatTextView; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import com.notepad.R; import com.notepad.database.Hashtag; import java.util.ArrayList; import java.util.List; public class TagsAdapter extends RecyclerView.Adapter<TagsAdapter.ViewHolder> { private List<Hashtag> tagsList; private Context context; private OnTagSelectedListener listener; public TagsAdapter(OnTagSelectedListener listener, List<Hashtag> tagsList) { this.listener = listener; this.tagsList = tagsList == null ? new ArrayList<>() : tagsList; } @NonNull @Override public TagsAdapter.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { this.context = parent.getContext(); View view = LayoutInflater.from(context).inflate(R.layout.item_tag, parent, false); return new TagsAdapter.ViewHolder(view); } @Override public void onBindViewHolder(@NonNull TagsAdapter.ViewHolder holder, final int pos) { final int position = holder.getAdapterPosition(); final Hashtag hashtag = tagsList.get(position); holder.tvTagTitle.setText(hashtag.getTagName()); holder.tvNoteCount.setText(String.valueOf(hashtag.getNotesCount())); holder.parentLayout.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if(hashtag.getNotesCount()>0){ listener.onTagSelected(hashtag); } } }); } @Override public int getItemCount() { return tagsList.size(); } public void refreshAdapterSet(List<Hashtag> tagsList) { this.tagsList = tagsList; notifyDataSetChanged(); } public interface OnTagSelectedListener { void onTagSelected(Hashtag hashtag); } public class ViewHolder extends RecyclerView.ViewHolder { private View parentLayout; private AppCompatTextView tvTagTitle; private TextView tvNoteCount; ViewHolder(View itemView) { super(itemView); parentLayout = itemView.findViewById(R.id.parentLayout); tvTagTitle = itemView.findViewById(R.id.tvTagTitle); tvNoteCount=itemView.findViewById(R.id.tvNoteCount); } } }
32.848101
95
0.679769
775d46c849262f3fcd539bc514bb4bb447be0679
4,016
package shift; import java.awt.Color; import java.awt.Graphics; import java.awt.Point; import java.awt.Polygon; public class Ladder extends Scenery implements IPathLink { double widthOffset; private double offsetWidth = .1; private Path boundPath; private Path connectedPath; public Ladder(Tile tileIn, Path boundPathIn, double offsetXIn, double offsetYIn, double widthOffsetIn) { super(tileIn, offsetXIn, offsetYIn); boundPath = boundPathIn; widthOffset = widthOffsetIn; MergedPaths.pathLinks.add(this); boundPath.setLink(this); } private double getLadderTheta() { if(getOffsetX() == 0 || getOffsetX() == 1) { return WorldPanel.radSpin - Math.PI/2.0; }else { return WorldPanel.radSpin; } } private int[][] getLadderPolyPoints() { double theta = getLadderTheta(); int[] xPoints = {(int)(getX() + Math.cos(theta) * getBoundTile().getRawWidth()*offsetWidth*WorldPanel.straightUnit), (int)(getX() - Math.cos(theta) * getBoundTile().getRawWidth()*offsetWidth*WorldPanel.straightUnit), (int)(getX() - Math.cos(theta) * getBoundTile().getRawWidth()*offsetWidth*WorldPanel.straightUnit), (int)(getX() + Math.cos(theta) * getBoundTile().getRawWidth()*offsetWidth*WorldPanel.straightUnit)}; int[] yPoints = {(int)(getY() - Math.sin(theta) * (WorldPanel.getShrink * getBoundTile().getRawLength()*offsetWidth*WorldPanel.straightUnit)), (int)(getY() + Math.sin(theta) * (WorldPanel.getShrink * getBoundTile().getRawLength()*offsetWidth*WorldPanel.straightUnit)), (int)(getY() + (WorldPanel.scale*distortedHeight(getBoundTile().getHeight())) + Math.sin(theta) * (WorldPanel.getShrink * getBoundTile().getRawLength()*offsetWidth*WorldPanel.straightUnit)), (int)(getY() + (WorldPanel.scale*distortedHeight(getBoundTile().getHeight())) - Math.sin(theta) * (WorldPanel.getShrink * getBoundTile().getRawLength()*offsetWidth*WorldPanel.straightUnit))}; int[][] gr = {xPoints,yPoints}; return gr; } private Polygon linkDetectionPolygon() { int[][] points = getLadderPolyPoints(); int[] xPoints = {(int)(getX()), (int)(getBoundTile().getCenterX()), (int)(getBoundTile().getCenterX()), (int)(getX())}; int[] yPoints = {(int)(getY()), (int)(getBoundTile().getCenterY() - getBoundTile().getScaledDistortedHeight()), (int)(getBoundTile().getCenterY()), (int)(getY() + getBoundTile().getScaledDistortedHeight())}; return new Polygon(xPoints, yPoints, 4); } @Override public Point[] getLinkPoints() { Point[] points = {new Point((int)(getX()), (int)(getY() + getBoundTile().getScaledDistortedHeight())) , new Point((int)(getX()), (int)(getY() + getBoundTile().getScaledDistortedHeight()))}; return points; } @Override public int[] getLinkHeights() { int[] heights = {0, getBoundTile().getHeight()}; return heights; } @Override public void draw(Graphics g) { g.fillPolygon(getLadderPolyPoints()[0], getLadderPolyPoints()[1], 4); g.setColor(Color.RED); g.fillPolygon(linkDetectionPolygon()); g.setColor(Color.WHITE); for(int i = 0; i < getLinkHeights().length; i++) { g.fillOval((int)getLinkPoints()[i].getX()-5, (int)(getLinkPoints()[i].getY() - (WorldPanel.scale*distortedHeight(getLinkHeights()[i])))-5, 10, 10); } } @Override public boolean pathLinkContainsPoint(Point p) { return (linkDetectionPolygon().contains(p) || new Polygon(getLadderPolyPoints()[0], getLadderPolyPoints()[1],4).contains(p)); } @Override public void setConnectedPath(Path p) { connectedPath = p; } @Override public Path getBoundPath() { return boundPath; } @Override public Path getConnectedPath() { return connectedPath; } }
38.247619
659
0.637699
1cc8f5435fcacaedb2d6a0f59f8bc4290d001a37
5,699
package com.wahyu.consumerapp.adapter; import android.app.Activity; import android.app.AlertDialog; import android.content.Intent; import android.content.SharedPreferences; import android.net.Uri; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.cardview.widget.CardView; import androidx.recyclerview.widget.RecyclerView; import com.squareup.picasso.Picasso; import com.wahyu.consumerapp.model.FavoriteModel; import com.wahyu.consumerapp.R; import com.wahyu.consumerapp.view.DetailActivity; import com.wahyu.consumerapp.constant.Base; import java.util.ArrayList; import de.hdodenhof.circleimageview.CircleImageView; import es.dmoral.toasty.Toasty; import static android.content.Context.MODE_PRIVATE; import static com.wahyu.consumerapp.localDatabase.contract.DatabaseContract.FavColumns.CONTENT_URI; /** * Created by wahyu_septiadi on 03, July 2020. * Visit My GitHub --> https://github.com/WahyuSeptiadi */ public class FavoriteListAdapter extends RecyclerView.Adapter<FavoriteListAdapter.ViewHolder>{ public final ArrayList<FavoriteModel> favoriteModelArrayList = new ArrayList<>(); private final Activity activity; private Uri uriWithId; public FavoriteListAdapter(Activity activity1) { this.activity = activity1; } public ArrayList<FavoriteModel> getFavoriteModelArrayList(){ return favoriteModelArrayList; } @NonNull @Override public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.row_favorite_list, parent, false); return new ViewHolder(view); } @Override public void onBindViewHolder(FavoriteListAdapter.ViewHolder holder, int position) { holder.bind(favoriteModelArrayList.get(position)); holder.item.setOnClickListener(new CustomOnItemClickListener(position, (view, position1) -> { Intent toDetail = new Intent(activity, DetailActivity.class); toDetail.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); Bundle bundle = new Bundle(); bundle.putString(Base.DATA_KEY, favoriteModelArrayList.get(position1).getUsername()); toDetail.putExtras(bundle); activity.startActivity(toDetail); })); holder.deleteFromFavList.setOnClickListener(view -> { String idUserDelete = favoriteModelArrayList.get(position).getIduser(); showAlertDialogDELETE(idUserDelete); SharedPreferences.Editor editor = activity.getSharedPreferences("fav", MODE_PRIVATE).edit(); editor.putBoolean("fav" + favoriteModelArrayList.get(position).getIduser(), false); editor.apply(); }); } @Override public int getItemCount() { return favoriteModelArrayList.size(); } public static class ViewHolder extends RecyclerView.ViewHolder { private final CircleImageView imgAvatar; private final TextView username; private final TextView typeUser; private final TextView idUser; private final ImageView deleteFromFavList; private final CardView item; public ViewHolder(View itemView) { super(itemView); imgAvatar = itemView.findViewById(R.id.civ_search); username = itemView.findViewById(R.id.usernameValue_listSearch); typeUser = itemView.findViewById(R.id.typeUserValue_listSearch); idUser = itemView.findViewById(R.id.idUserValue_listSearch); item = itemView.findViewById(R.id.cardListSearch); deleteFromFavList = itemView.findViewById(R.id.deleteFromFavList); } public void bind(FavoriteModel favoritebind) { Picasso.get().load(favoritebind.getAvatar()) .placeholder(R.drawable.ic_profile) .into(imgAvatar); username.setText(favoritebind.getUsername()); typeUser.setText(String.valueOf(favoritebind.getTypeuser())); idUser.setText(String.valueOf(favoritebind.getIduser())); } } public void setFavoriteModelArrayList(ArrayList<FavoriteModel> listFav){ this.favoriteModelArrayList.clear(); this.favoriteModelArrayList.addAll(listFav); notifyDataSetChanged(); } private void showAlertDialogDELETE(String idUserDel) { String dialogMessage = activity.getResources().getString(R.string.msg_delete_user); String dialogTitle = activity.getResources().getString(R.string.ttl_delete_user); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(activity); alertDialogBuilder.setTitle(dialogTitle); alertDialogBuilder .setMessage(dialogMessage) .setCancelable(false) .setPositiveButton(activity.getResources().getString(R.string.positif_btn), (dialog, id) -> { //DELETE form FavoriteList uriWithId = Uri.parse(CONTENT_URI + "/" + idUserDel); activity.getContentResolver().delete(uriWithId, null, null); Toasty.success(activity, activity.getResources().getString(R.string.success_delete), Toast.LENGTH_SHORT, true).show(); }) .setNegativeButton(activity.getResources().getString(R.string.negatif_btn), (dialog, id) -> dialog.cancel()); AlertDialog alertDialog = alertDialogBuilder.create(); alertDialog.show(); } }
38.248322
138
0.703281
0af01aceddb3bf612e8ab2f781d47c89f56f193b
2,263
/* ConsolidateDuplicateConditionalFragment.java * * This class is used to test a tyRuBa result set for adherence * to the "consolidate_duplicate_cond_fragments" logical refactoring rule. * * author: Napol Rachatasumrit * created: 08/06/2010 */ package lsclipse.rules; import lsclipse.LCS; import lsclipse.RefactoringQuery; import tyRuBa.tdbc.ResultSet; import tyRuBa.tdbc.TyrubaException; public class ConsolidateDuplicateConditionalFragment implements Rule { private String name_; public ConsolidateDuplicateConditionalFragment() { name_ = "consolidate_duplicate_cond_fragments"; } @Override public String checkAdherence(ResultSet rs) throws TyrubaException { String old_elsePart = rs.getString("?old_elsePart"); String new_elsePart = rs.getString("?new_elsePart"); String old_ifPart = rs.getString("?old_ifPart"); String new_ifPart = rs.getString("?new_ifPart"); String body = rs.getString("?mbody"); if(old_elsePart.equals("")) return null; if (similar_fragments(old_elsePart, new_elsePart, body) && similar_fragments(old_ifPart, new_ifPart, body)) { String writeTo = getName() + "(\"" + rs.getString("?mFullName") + "\")"; return writeTo; } return null; } private String getQueryString() { return "deleted_conditional(" + "?cond, ?old_ifPart, ?old_elsePart, ?mFullName), " + "added_conditional(" + "?cond, ?new_ifPart, ?new_elsePart, ?mFullName), " + "after_methodbody(" + "?mFullName, ?mbody)"; } public boolean similar_fragments(String old, String news, String body) { String lcs = LCS.getLCS(old, news); int index = old.indexOf(lcs); if(index == -1) return false; String prefix = old.substring(0, index); String suffix = old.substring(index + lcs.length()); if (body.contains(prefix) && body.contains(suffix)) return true; else return false; } @Override public String getName() { return name_; } @Override public RefactoringQuery getRefactoringQuery() { RefactoringQuery repl = new RefactoringQuery(getName(), getQueryString()); return repl; } @Override public String getRefactoringString() { return getName() + "(?mFullName)"; } }
26.623529
75
0.688025
76b5dc596b39feec1006420390bd1436152e5db9
3,683
package scratch.kevin.ucerf3.inversion; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.zip.ZipException; import org.dom4j.DocumentException; import org.opensha.commons.util.ExceptionUtils; import org.opensha.sha.earthquake.faultSysSolution.FaultSystemSolution; import org.opensha.sha.earthquake.faultSysSolution.inversion.constraints.impl.PaleoProbabilityModel; import scratch.UCERF3.enumTreeBranches.FaultModels; import scratch.UCERF3.inversion.CommandLineInversionRunner; import scratch.UCERF3.inversion.InversionFaultSystemSolution; import scratch.UCERF3.inversion.UCERF2_ComparisonSolutionFetcher; import scratch.UCERF3.utils.U3FaultSystemIO; import scratch.UCERF3.utils.aveSlip.U3AveSlipConstraint; import scratch.UCERF3.utils.paleoRateConstraints.PaleoFitPlotter; import scratch.UCERF3.utils.paleoRateConstraints.U3PaleoRateConstraint; import scratch.UCERF3.utils.paleoRateConstraints.UCERF3_PaleoProbabilityModel; import scratch.UCERF3.utils.paleoRateConstraints.UCERF3_PaleoRateConstraintFetcher; import com.google.common.base.Preconditions; public class BatchPaleoTableWriter { /** * @param args * @throws DocumentException * @throws IOException * @throws ZipException */ public static void main(String[] args) throws ZipException, IOException, DocumentException { Preconditions.checkArgument(args.length == 1, "Must specify directory."); File dir = new File(args[0]); Preconditions.checkArgument(dir.exists() && dir.isDirectory(), "Directory doesn't exist or isn't directory."); FaultSystemSolution ucerf2Sol = UCERF2_ComparisonSolutionFetcher .getUCERF2Solution(FaultModels.FM2_1); List<U3AveSlipConstraint> ucerf2AveSlipConstraints; List<U3PaleoRateConstraint> ucerf2PaleoConstraints; try { ucerf2AveSlipConstraints = U3AveSlipConstraint.load( ucerf2Sol.getRupSet().getFaultSectionDataList()); ucerf2PaleoConstraints = UCERF3_PaleoRateConstraintFetcher .getConstraints(ucerf2Sol.getRupSet().getFaultSectionDataList()); } catch (IOException e) { throw ExceptionUtils.asRuntimeException(e); } PaleoProbabilityModel paleoProbModel = null; try { paleoProbModel = UCERF3_PaleoProbabilityModel.load(); } catch (IOException e) { ExceptionUtils.throwAsRuntimeException(e); } handleDir(dir, ucerf2Sol, ucerf2AveSlipConstraints, ucerf2PaleoConstraints, paleoProbModel); } private static void handleDir(File dir, FaultSystemSolution ucerf2Sol, List<U3AveSlipConstraint> ucerf2AveSlipConstraints, List<U3PaleoRateConstraint> ucerf2PaleoRateConstraints, PaleoProbabilityModel paleoProbModel) throws ZipException, IOException, DocumentException { for (File file : dir.listFiles()) { if (file.isDirectory()) { handleDir(file, ucerf2Sol, ucerf2AveSlipConstraints, ucerf2PaleoRateConstraints, paleoProbModel); continue; } // make sure it's a solution file if (!file.getName().endsWith("_sol.zip")) continue; File paleoDir = new File(dir, "paleo_fault_based"); if (!paleoDir.exists()) paleoDir.mkdir(); InversionFaultSystemSolution sol = U3FaultSystemIO.loadInvSol(file); List<U3AveSlipConstraint> aveSlipConstraints = U3AveSlipConstraint.load(sol.getRupSet().getFaultSectionDataList()); List<U3PaleoRateConstraint> paleoRateConstraints = CommandLineInversionRunner.getPaleoConstraints( sol.getRupSet().getFaultModel(), sol.getRupSet()); PaleoFitPlotter.writeTables(paleoDir, sol, aveSlipConstraints, paleoRateConstraints, ucerf2Sol, ucerf2AveSlipConstraints, ucerf2PaleoRateConstraints, paleoProbModel); } } }
37.581633
100
0.793646
3df3898a66a540d9a7f8d3d22cef758a70488bbf
5,777
/** * The MIT License (MIT) * * Copyright (c) 2014-2019 <mickael.jeanroy@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.github.mjeanroy.junit.servers.commons.lang; import java.util.Collection; import static java.lang.String.format; /** * Static utilities that can be used to check object's values. * * <p> * * <strong>Internal API</strong>: these methods are part of the internal API and may be removed, have their signature change, * or have their access level decreased from public to protected, package, or private in future versions without notice. */ public final class Preconditions { private Preconditions() { } /** * Check that a given value is not null. * It throws a {@link NullPointerException} exception if value is {@code null} or returned the * value. * * @param value Value to check. * @param name Name of parameter, it will produce an error message such as "{name} must not be null" * @param <T> Type of value. * @return First parameter if it is not null. * @throws NullPointerException If {@code value} is {@code null}. */ public static <T> T notNull(T value, String name) { if (value == null) { throw new NullPointerException(format("%s must not be null", name)); } return value; } /** * Check that given iterable does not contain any {@code null} values. * It throws a {@link NullPointerException} exception if at least one value is {@code null} or returned the * original iterable. * * @param values Values to check. * @param name Name of parameter, it will produce an error message such as "{name[i]} must not be null" * @param <T> Type of value. * @return First parameter if it is not null. * @throws NullPointerException If {@code value} is {@code null}. */ public static <T> Iterable<T> doesNotContainNull(Iterable<T> values, String name) { notNull(values, "name"); int i = 0; for (T value : values) { if (value == null) { throw new NullPointerException(String.format("%s[%s] must not be null", name, i)); } ++i; } return values; } /** * Check that given collection is not empty (i.e null or with a size equal to zero). * It throws a {@link IllegalArgumentException} exception if collection is empty or * returned original collection otherwise. * * Generated message will be : {name} must not be empty * Where name is the value given in parameter. * * @param collection Collection. * @param name Name of field to produce exception message. * @param <T> Type of elements. * @return Original collection. * @throws NullPointerException If {@code collection} is {@code null}. * @throws IllegalArgumentException If {@code collection} is empty. */ public static <T> Collection<T> notEmpty(Collection<T> collection, String name) { notNull(collection, name); if (collection.isEmpty()) { throw new IllegalArgumentException(format("%s must not be empty", name)); } return collection; } /** * Check that a given string value is not blank (i.e not null, not empty and not blank). * It throws a {@link NullPointerException} exception if value is null and throw an * {@link java.lang.IllegalArgumentException} if value is empty or blank. * Otherwise original value is returned * * @param value Value to check. * @param name Name of parameter, it will produce an error message such as "{name} must not be null" * or "{name} must not be blank". * @return First parameter if it is not blank. */ public static String notBlank(String value, String name) { notNull(value, name); if (Strings.isBlank(value)) { throw new IllegalArgumentException(format("%s must not be blank", name)); } return value; } /** * Check that a given integer is positive. * If integer value is negative, it throws an {@link IllegalArgumentException} exception, * otherwise integer value is returned. * * @param value Value to check. * @param name Name of value. * @return Integer value if value is positive. */ public static int positive(int value, String name) { return checkPositiveNumber(value, name); } /** * Check that a given long value is positive. * If long value is negative, it throws an {@link IllegalArgumentException} exception, * otherwise integer value is returned. * * @param value Value to check. * @param name Name of value. * @return Long value if value is positive. */ public static long positive(long value, String name) { return checkPositiveNumber(value, name); } private static <T extends Number> T checkPositiveNumber(T value, String name) { if (value.doubleValue() < 0) { throw new IllegalArgumentException(format("%s must be positive", name)); } return value; } }
34.386905
125
0.708672
1457a7b451f0fae70c70dcb6c7bea8118c6aca8e
3,652
package net.minecraft.tileentity; import java.util.function.BiPredicate; import java.util.function.Function; import net.minecraft.block.BlockState; import net.minecraft.state.DirectionProperty; import net.minecraft.util.Direction; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IWorld; public class TileEntityMerger { public static <S extends TileEntity> TileEntityMerger.ICallbackWrapper<S> combineWithNeigbour(TileEntityType<S> p_226924_0_, Function<BlockState, TileEntityMerger.Type> p_226924_1_, Function<BlockState, Direction> p_226924_2_, DirectionProperty p_226924_3_, BlockState p_226924_4_, IWorld p_226924_5_, BlockPos p_226924_6_, BiPredicate<IWorld, BlockPos> p_226924_7_) { S s = p_226924_0_.getBlockEntity(p_226924_5_, p_226924_6_); if (s == null) { return TileEntityMerger.ICallback::acceptNone; } else if (p_226924_7_.test(p_226924_5_, p_226924_6_)) { return TileEntityMerger.ICallback::acceptNone; } else { TileEntityMerger.Type tileentitymerger$type = p_226924_1_.apply(p_226924_4_); boolean flag = tileentitymerger$type == TileEntityMerger.Type.SINGLE; boolean flag1 = tileentitymerger$type == TileEntityMerger.Type.FIRST; if (flag) { return new TileEntityMerger.ICallbackWrapper.Single<>(s); } else { BlockPos blockpos = p_226924_6_.relative(p_226924_2_.apply(p_226924_4_)); BlockState blockstate = p_226924_5_.getBlockState(blockpos); if (blockstate.is(p_226924_4_.getBlock())) { TileEntityMerger.Type tileentitymerger$type1 = p_226924_1_.apply(blockstate); if (tileentitymerger$type1 != TileEntityMerger.Type.SINGLE && tileentitymerger$type != tileentitymerger$type1 && blockstate.getValue(p_226924_3_) == p_226924_4_.getValue(p_226924_3_)) { if (p_226924_7_.test(p_226924_5_, blockpos)) { return TileEntityMerger.ICallback::acceptNone; } S s1 = p_226924_0_.getBlockEntity(p_226924_5_, blockpos); if (s1 != null) { S s2 = flag1 ? s : s1; S s3 = flag1 ? s1 : s; return new TileEntityMerger.ICallbackWrapper.Double<>(s2, s3); } } } return new TileEntityMerger.ICallbackWrapper.Single<>(s); } } } public interface ICallback<S, T> { T acceptDouble(S p_225539_1_, S p_225539_2_); T acceptSingle(S p_225538_1_); T acceptNone(); } public interface ICallbackWrapper<S> { <T> T apply(TileEntityMerger.ICallback<? super S, T> p_apply_1_); public static final class Double<S> implements TileEntityMerger.ICallbackWrapper<S> { private final S first; private final S second; public Double(S p_i225760_1_, S p_i225760_2_) { this.first = p_i225760_1_; this.second = p_i225760_2_; } public <T> T apply(TileEntityMerger.ICallback<? super S, T> p_apply_1_) { return p_apply_1_.acceptDouble(this.first, this.second); } } public static final class Single<S> implements TileEntityMerger.ICallbackWrapper<S> { private final S single; public Single(S p_i225761_1_) { this.single = p_i225761_1_; } public <T> T apply(TileEntityMerger.ICallback<? super S, T> p_apply_1_) { return p_apply_1_.acceptSingle(this.single); } } } public static enum Type { SINGLE, FIRST, SECOND; } }
39.695652
371
0.652245
145103aecd5beb857f1ceb8ddeff3704d5843e6e
175
public Integer[] nextIntArray(int size) { Integer[] array = new Integer[size]; for (int i = 0; i < size; i++) { array[i] = nextInt(); } return array; }
25
41
0.548571
768353ea2392c53b108f7a61e7528ea6e00774c5
2,192
package parser.ast.stmt.ddl.create; import parser.SQLType; import parser.ast.expression.Expression; import parser.ast.expression.primary.Identifier; import parser.ast.expression.primary.literal.LiteralString; import parser.ast.stmt.SQLStatement; import parser.visitor.Visitor; /** * @author Dagon0577 * @date 2020/7/17 */ public class DDLCreateLogfileGroupStatement implements SQLStatement { private final Identifier name; private final LiteralString undoFile; private final Expression initialSize; private final Expression undoBufferSize; private final Expression redoBufferSize; private final Expression nodeGroupId; private final boolean isWait; private final LiteralString comment; private final Identifier engine; public DDLCreateLogfileGroupStatement(Identifier name, LiteralString undoFile, Expression initialSize, Expression undoBufferSize, Expression redoBufferSize, Expression nodeGroupId, boolean isWait, LiteralString comment, Identifier engine) { this.name = name; this.undoFile = undoFile; this.initialSize = initialSize; this.undoBufferSize = undoBufferSize; this.redoBufferSize = redoBufferSize; this.nodeGroupId = nodeGroupId; this.isWait = isWait; this.comment = comment; this.engine = engine; } public Identifier getName() { return name; } public LiteralString getUndoFile() { return undoFile; } public Expression getInitialSize() { return initialSize; } public Expression getUndoBufferSize() { return undoBufferSize; } public Expression getRedoBufferSize() { return redoBufferSize; } public Expression getNodeGroupId() { return nodeGroupId; } public boolean isWait() { return isWait; } public LiteralString getComment() { return comment; } public Identifier getEngine() { return engine; } @Override public void accept(Visitor visitor) { visitor.visit(this); } @Override public int getSQLType() { return SQLType.CREATE_LOG_FILE_GROUP; } }
25.488372
106
0.69115
3454b91d985cb4e2ac5c9d8b3aa96feb901c1026
1,893
package com.ivan.materialanimatedswitch; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.Toast; import com.ivan.materialanimatedswitchlibrary.MaterialAnimatedSwitch; import com.ivan.materialanimatedswitchlibrary.MaterialAnimatedSwitchState; public class MainActivity extends AppCompatActivity { MaterialAnimatedSwitch materialAnimatedSwitch; MaterialAnimatedSwitch materialAnimatedSwitch2; MaterialAnimatedSwitch materialAnimatedSwitch3; MaterialAnimatedSwitch materialAnimatedSwitch4; MaterialAnimatedSwitch masterSwitch; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); materialAnimatedSwitch = (MaterialAnimatedSwitch) findViewById(R.id.pin); materialAnimatedSwitch2 = (MaterialAnimatedSwitch) findViewById(R.id.pin2); materialAnimatedSwitch3 = (MaterialAnimatedSwitch) findViewById(R.id.pin3); materialAnimatedSwitch4 = (MaterialAnimatedSwitch) findViewById(R.id.pin4); masterSwitch = (MaterialAnimatedSwitch) findViewById(R.id.masterSwitch); materialAnimatedSwitch.setOnCheckedChangeListener( new MaterialAnimatedSwitch.OnCheckedChangeListener() { @Override public void onCheckedChanged(boolean isChecked) { Toast.makeText(MainActivity.this, materialAnimatedSwitch.isChecked() + "", Toast.LENGTH_SHORT).show(); materialAnimatedSwitch2.toggle(); } }); materialAnimatedSwitch2.post(new Runnable() { @Override public void run() { materialAnimatedSwitch2.setState(MaterialAnimatedSwitchState.PRESS); } }); } }
41.152174
98
0.701004
9f4191afd69e48240837f5d605551149d2e34746
736
package kbasesearchengine.system; import java.util.Comparator; /** Orders {@link ObjectTypeParsingRules} such that parsing rules for subobjects are first in the * order. * @author gaprice@lbl.gov * */ public class ParsingRulesSubtypeFirstComparator implements Comparator<ObjectTypeParsingRules> { @Override public int compare(final ObjectTypeParsingRules o1, final ObjectTypeParsingRules o2) { if (o1.getSubObjectType().isPresent()) { if (o2.getSubObjectType().isPresent()) { return 0; } else { return -1; } } else if (o2.getSubObjectType().isPresent()) { return 1; } else { return 0; } } }
25.37931
97
0.61413
c7b9119a9c77aa0286b7765f2a9c6a7b42bd7af3
461
package com.macro.mall.tiny.validator; import com.macro.mall.tiny.exception.ProductValidatorException; import java.math.BigDecimal; /** * 商品验证异常处理器 * Created by macro on 2021/10/22. */ public class ProductValidator { public BigDecimal validatePrice(BigDecimal price) throws ProductValidatorException { if(price.compareTo(BigDecimal.ZERO)<0){ throw new ProductValidatorException("价格不能小于0!"); } return price; } }
24.263158
88
0.713666
ff7d316885f369c9217dd547b53456e55d0d967d
3,854
/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.sdnhub.flowtags.internal; import java.util.Dictionary; import java.util.Hashtable; import org.apache.felix.dm.Component; import org.opendaylight.controller.sal.core.ComponentActivatorAbstractBase; import org.opendaylight.controller.sal.flowprogrammer.IFlowProgrammerService; import org.opendaylight.controller.sal.packet.IDataPacketService; import org.opendaylight.controller.sal.packet.IListenDataPacket; import org.opendaylight.controller.switchmanager.IInventoryListener; import org.opendaylight.controller.switchmanager.ISwitchManager; import org.sdnhub.flowtags.IFlowtags; import org.sdnhub.flowtags.Flowtags; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Activator extends ComponentActivatorAbstractBase { protected static final Logger log = LoggerFactory .getLogger(Activator.class); /** * Function that is used to communicate to dependency manager the list of * known implementations for services inside a container * * * @return An array containing all the CLASS objects that will be * instantiated in order to get an fully working implementation * Object */ public Object[] getImplementations() { // TODO: Call your Class.class Object[] res = { Flowtags.class }; return res; } /** * Function that is called when configuration of the dependencies is * required. * * @param c * dependency manager Component object, used for configuring the * dependencies exported and imported * @param imp * Implementation class that is being configured, needed as long * as the same routine can configure multiple implementations * @param containerName * The containerName being configured, this allow also optional * per-container different behavior if needed, usually should not * be the case though. */ public void configureInstance(Component c, Object imp, String containerName) { if (imp.equals(Flowtags.class)) { log.info("Activating"); // export the services Dictionary<String, String> props; props = new Hashtable<String, String>(); props.put("salListenerName", "proactive"); c.setInterface(new String[] { IListenDataPacket.class.getName(), IInventoryListener.class.getName(), IFlowtags.class.getName()}, props); // IDnsGuard.class.getName() //ISwitchStateListener.class.getName(), // register dependent modules c.add(createContainerServiceDependency(containerName) .setService(ISwitchManager.class) .setCallbacks("setSwitchManager", "unsetSwitchManager").setRequired(true)); c.add(createContainerServiceDependency(containerName).setService( IFlowProgrammerService.class).setCallbacks( "setFlowProgrammerService", "unsetFlowProgrammerService") .setRequired(true)); // adding service to parsing packets c.add(createContainerServiceDependency(containerName) .setService(IDataPacketService.class) .setCallbacks("setDataPacketService", "unsetDataPacketService").setRequired(true)); } } }
39.731959
112
0.654645
106bba49138c16b9c7aa3dffe626270b193aa783
536
// // $Id: Css2Style.java,v 1.3 2010-01-05 13:49:46 ylafon Exp $ // From Philippe Le Hegaret (Philippe.Le_Hegaret@sophia.inria.fr) // // (c) COPYRIGHT MIT and INRIA, 1997. // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.properties.css2; import org.w3c.css.properties.aural.ACssStyle; import org.w3c.css.parser.CssPrinterStyle; /** * @version $Revision: 1.3 $ */ public class Css2Style extends ACssStyle { public void print(CssPrinterStyle printer) { super.print(printer); } }
23.304348
72
0.725746
abbfbd41ce43152374dede1b6d765308cf5d833e
393
package schauweg.tillitbreaks.modmenu; import com.terraformersmc.modmenu.api.ConfigScreenFactory; import com.terraformersmc.modmenu.api.ModMenuApi; import schauweg.tillitbreaks.config.TIBConfigScreen; public class TIBModMenuIntegration implements ModMenuApi { @Override public ConfigScreenFactory<?> getModConfigScreenFactory() { return TIBConfigScreen::getScreen; } }
26.2
63
0.804071
1c426ef978cddd227f79ea5785278caf886c5139
568
package com.vmware.spring.workshop.facade.support.views; import javax.inject.Inject; import javax.inject.Named; import org.springframework.oxm.Marshaller; import org.springframework.web.servlet.view.xml.MarshallingView; /** * @author lgoldstein */ @View("genericRESTView") public class GenericRESTView extends MarshallingView { public static final String MODEL_VALUE_KEY="modelValueKey"; @Inject public GenericRESTView (@Named("oxmMarshaller") final Marshaller marshaller) { super(marshaller); setModelKey(MODEL_VALUE_KEY); } }
27.047619
82
0.758803
5f0bb9df2fcca07a462c1a28bd06c107af72913b
4,158
/* * Pravega Schema Registry APIs * REST APIs for Pravega Schema Registry. * * OpenAPI spec version: 0.0.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ package io.pravega.schemaregistry.contract.generated.rest.model; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import javax.validation.constraints.*; /** * Serialization format enum that lists different serialization formats supported by the service. To use additional formats, use serializationFormat.Custom and supply fullTypeName. */ @ApiModel(description = "Serialization format enum that lists different serialization formats supported by the service. To use additional formats, use serializationFormat.Custom and supply fullTypeName.") public class SerializationFormat { /** * Gets or Sets serializationFormat */ public enum SerializationFormatEnum { AVRO("Avro"), PROTOBUF("Protobuf"), JSON("Json"), ANY("Any"), CUSTOM("Custom"); private String value; SerializationFormatEnum(String value) { this.value = value; } @Override @JsonValue public String toString() { return String.valueOf(value); } @JsonCreator public static SerializationFormatEnum fromValue(String text) { for (SerializationFormatEnum b : SerializationFormatEnum.values()) { if (String.valueOf(b.value).equals(text)) { return b; } } return null; } } @JsonProperty("serializationFormat") private SerializationFormatEnum serializationFormat = null; @JsonProperty("fullTypeName") private String fullTypeName = null; public SerializationFormat serializationFormat(SerializationFormatEnum serializationFormat) { this.serializationFormat = serializationFormat; return this; } /** * Get serializationFormat * @return serializationFormat **/ @JsonProperty("serializationFormat") @ApiModelProperty(required = true, value = "") @NotNull public SerializationFormatEnum getSerializationFormat() { return serializationFormat; } public void setSerializationFormat(SerializationFormatEnum serializationFormat) { this.serializationFormat = serializationFormat; } public SerializationFormat fullTypeName(String fullTypeName) { this.fullTypeName = fullTypeName; return this; } /** * Get fullTypeName * @return fullTypeName **/ @JsonProperty("fullTypeName") @ApiModelProperty(value = "") public String getFullTypeName() { return fullTypeName; } public void setFullTypeName(String fullTypeName) { this.fullTypeName = fullTypeName; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } SerializationFormat serializationFormat = (SerializationFormat) o; return Objects.equals(this.serializationFormat, serializationFormat.serializationFormat) && Objects.equals(this.fullTypeName, serializationFormat.fullTypeName); } @Override public int hashCode() { return Objects.hash(serializationFormat, fullTypeName); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class SerializationFormat {\n"); sb.append(" serializationFormat: ").append(toIndentedString(serializationFormat)).append("\n"); sb.append(" fullTypeName: ").append(toIndentedString(fullTypeName)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(java.lang.Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }
26.825806
204
0.70683
c91439b899962c5023f5fd689b807847aeedef39
1,503
package andytxr.ldrplugins; import org.bukkit.ChatColor; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.player.PlayerChangedWorldEvent; import org.bukkit.event.player.PlayerLevelChangeEvent; import org.bukkit.potion.PotionEffectType; public class PlayerCursed implements Listener { @EventHandler public void onPlayerCL(PlayerLevelChangeEvent event) { if(event.getPlayer().getLevel()>30) { event.getPlayer().sendMessage(ChatColor.RED+"Voce foi amaldicoado!"); event.getPlayer().addPotionEffect(PotionEffectType.WITHER.createEffect(600, 1)); event.getPlayer().sendMessage(ChatColor.LIGHT_PURPLE+"Lana diz:"+ChatColor.AQUA+" Sempre leve um balde de leite por ai, voce nao sabe o que pode acontecer."); } } @EventHandler public void onPlayerCW(PlayerChangedWorldEvent event) { event.getPlayer().sendMessage(ChatColor.DARK_PURPLE+"Um estado de confusao assola voce apos ter utilizado o portal."); event.getPlayer().addPotionEffect(PotionEffectType.CONFUSION.createEffect(1000,2)); event.getPlayer().addPotionEffect(PotionEffectType.BLINDNESS.createEffect(1000,3)); event.getPlayer().sendMessage(ChatColor.LIGHT_PURPLE+"Lana te abencoa e instaura uma aura de protecao temporaria em voce."); event.getPlayer().addPotionEffect(PotionEffectType.REGENERATION.createEffect(2000,0)); } }
39.552632
171
0.722555
99818391c2855333f5a6d8b4a1c9ad790594226c
5,477
package io.bcs.fileserver.infrastructure.file.content; import io.bce.interaction.streaming.Destination; import io.bce.interaction.streaming.RechargeableSource; import io.bce.interaction.streaming.Source; import io.bce.interaction.streaming.Stream.Stat; import io.bce.interaction.streaming.Streamer; import io.bce.interaction.streaming.binary.BinaryChunk; import io.bce.interaction.streaming.binary.InputStreamSource; import io.bce.interaction.streaming.binary.OutputStreamDestination; import io.bce.promises.Promise; import io.bcs.fileserver.domain.model.file.content.ContentReceiver; import io.bcs.fileserver.domain.model.file.content.FileContent; import io.bcs.fileserver.domain.model.file.content.FileContent.ContentPart; import io.bcs.fileserver.domain.model.file.metadata.FileMetadata; import java.io.ByteArrayInputStream; import java.io.IOException; import java.util.LinkedList; import java.util.Queue; import javax.servlet.http.HttpServletResponse; /** * This class implements content receiver, which sets http headers and transfers data. * * @author Dmitry Mikhaylenko * */ public class HttpFileDataReceiver extends HttpHeadersReceiver implements ContentReceiver { private static final String MULTIPART_SEPARATOR = "--" + MULTIPART_BOUNDARY; private static final String MULTIPART_ENDING = MULTIPART_SEPARATOR + "--"; private final Streamer streamer; private final Destination<BinaryChunk> destination; private final FileMetadataProvider metadataProvider; /** * Create file data receiver. * * @param streamer A data streamer * @param servletResponse A servlet response instance. * @param metadataProvider A metadata provider * @throws IOException Throws if servlet output stream couldn't be obtained. */ public HttpFileDataReceiver(Streamer streamer, HttpServletResponse servletResponse, FileMetadataProvider metadataProvider) throws IOException { super(servletResponse, metadataProvider); this.destination = new OutputStreamDestination(servletResponse.getOutputStream()); this.metadataProvider = metadataProvider; this.streamer = streamer; } @Override public Promise<Void> receiveFullContent(FileContent content) { return HttpFileDataReceiver.super.receiveFullContent(content).chain((v, deferred) -> { transferContent(new SingleRangeContentSource(content)).then(s -> deferred.resolve(null)); }); } @Override public Promise<Void> receiveContentRange(FileContent content) { return HttpFileDataReceiver.super.receiveContentRange(content).chain((v, deferred) -> { transferContent(new SingleRangeContentSource(content)).then(s -> deferred.resolve(null)); }); } @Override public Promise<Void> receiveContentRanges(FileContent content) { return HttpFileDataReceiver.super.receiveContentRanges(content).chain((v, deferred) -> { transferContent(new MultiRangeContentSource(content, metadataProvider)) .then(s -> deferred.resolve(null)); }); } private Promise<Stat> transferContent(Source<BinaryChunk> contentSource) { return streamer.createStream(contentSource, destination).start(); } private static class SingleRangeContentSource extends RechargeableSource<BinaryChunk> { public SingleRangeContentSource(FileContent content) { super(createSourcesQueue(content)); } private static Queue<Source<BinaryChunk>> createSourcesQueue(FileContent content) { LinkedList<Source<BinaryChunk>> queue = new LinkedList<Source<BinaryChunk>>(); queue.add(content.getParts().iterator().next().getContentSource()); return queue; } } private static class MultiRangeContentSource extends RechargeableSource<BinaryChunk> { public MultiRangeContentSource(FileContent content, FileMetadataProvider fileMetadataProvider) { super(createSourcesQueue(content, fileMetadataProvider)); } private static Queue<Source<BinaryChunk>> createSourcesQueue(FileContent content, FileMetadataProvider fileMetadataProvider) { LinkedList<Source<BinaryChunk>> queue = new LinkedList<Source<BinaryChunk>>(); FileMetadata metadata = fileMetadataProvider.getMetadataFor(content.getLocator()); content.getParts().forEach(part -> queue.add(createPartSource(metadata, part))); byte[] contentEnding = createContentEnding(); queue.add( new InputStreamSource(new ByteArrayInputStream(contentEnding), contentEnding.length)); return queue; } private static Source<BinaryChunk> createPartSource(FileMetadata metadata, ContentPart part) { LinkedList<Source<BinaryChunk>> queue = new LinkedList<Source<BinaryChunk>>(); byte[] head = createRangeHead(metadata, part); queue.add(new InputStreamSource(new ByteArrayInputStream(head), head.length)); queue.add(part.getContentSource()); return new RechargeableSource<>(queue); } private static final byte[] createRangeHead(FileMetadata fileMetadata, ContentPart contentPart) { return new StringBuilder().append("\n").append(MULTIPART_SEPARATOR + "\n") .append(String.format("Content-Type: %s\n", fileMetadata.getMediaType())) .append(String.format("Content-Range: %s\n", new ContentRange(fileMetadata, contentPart))) .toString().getBytes(); } private static final byte[] createContentEnding() { return new StringBuilder().append("\n").append(MULTIPART_ENDING + "\n").toString().getBytes(); } } }
43.468254
100
0.758992