blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
332
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
7
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
557 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
82 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
5.41M
extension
stringclasses
11 values
content
stringlengths
7
5.41M
authors
sequencelengths
1
1
author
stringlengths
0
161
ffe7db947a5d5622047383a3d733d0c992c67ed8
18d4f1b4e2d9b045e3134b12e389453f691c1ee2
/src/main/java/com/throwner/engine/world/Tile.java
bc2a74fea303690c38df9cc3b29ce121bc1744e7
[]
no_license
rquintao/RPG-Java-CommandLine
6df36d08c9e20b389dc6c7ea2963861bba64250a
48a6c04ffe9a361e9d4addfea9dd528eb3674dc2
refs/heads/master
2020-04-20T07:24:05.342913
2019-02-08T16:49:43
2019-02-08T16:49:43
168,709,218
1
0
null
null
null
null
UTF-8
Java
false
false
2,317
java
package com.throwner.engine.world; import java.io.Serializable; import com.throwner.engine.character.MonsterCharacter; import com.throwner.engine.character.playerfactory.PlayerCharacter; public class Tile implements Serializable { /** * */ private static final long serialVersionUID = -5957655655471518008L; @SuppressWarnings("unused") private final int xPos, yPos; private String type; private PlayerCharacter player; private MonsterCharacter monster; private boolean isOccupiedbyMonster; private boolean isOccupiedbyPlayer; private boolean isDiscovered; private String spriteValue = "."; public Tile(int xPos, int yPos){ this.xPos = xPos; this.yPos = yPos; } public void updateTile(){ if(this.monster!=null){ this.isOccupiedbyMonster = true; }else this.isOccupiedbyMonster = false; if(this.player!=null){ this.isOccupiedbyPlayer=true; this.isDiscovered=true; } else this.isOccupiedbyPlayer = false; if (isDiscovered){ this.spriteValue = "O"; } if (isOccupiedbyMonster && isDiscovered){ this.spriteValue = "M"; }; if (isOccupiedbyPlayer){ this.spriteValue = "X"; } if(isOccupiedbyPlayer && isOccupiedbyMonster){ this.spriteValue = "F"; } } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getSpriteValue() { return spriteValue; } public void setSpriteValue(String spriteValue) { this.spriteValue = spriteValue; } public boolean isDiscovered() { return isDiscovered; } public void setDiscovered(boolean isDiscovered) { this.isDiscovered = isDiscovered; } public boolean isOccupiedbyPlayer() { return isOccupiedbyPlayer; } public void setOccupiedbyPlayer(boolean isOccupiedbyPlayer) { this.isOccupiedbyPlayer = isOccupiedbyPlayer; } public PlayerCharacter getPlayer() { return player; } public void setPlayer(PlayerCharacter player) { this.player = player; } public MonsterCharacter getMonster() { return monster; } public void setMonster(MonsterCharacter monster) { this.monster = monster; } public boolean isOccupiedbyMonster() { return isOccupiedbyMonster; } public void setOccupiedbyMonster(boolean isOccupiedbyMonster) { this.isOccupiedbyMonster = isOccupiedbyMonster; } }
8cd41be0fe8a00c582839553dd78587a4a6e0dc3
8fb16edc97bbd1bd944f28c6f6203b969ae05a22
/emall-mbg/src/main/java/com/alibaba_tencent/emall/ums/service/IntegrationConsumeSettingService.java
9dc6f1b5ae0fc05b1c306eb2adec12aa19650898
[]
no_license
ChenYong-GitHub/e-mall
d56b0e393533b7746366c1b65d7ad46ff77d3b7b
4954be8090e14e6e5728beac5997f0946731c00f
refs/heads/master
2022-07-27T21:08:38.981765
2020-01-10T09:33:24
2020-01-10T09:33:24
231,020,299
0
0
null
2022-06-21T02:34:53
2019-12-31T03:38:24
Java
UTF-8
Java
false
false
378
java
package com.alibaba_tencent.emall.ums.service; import com.alibaba_tencent.emall.ums.entity.IntegrationConsumeSetting; import com.baomidou.mybatisplus.extension.service.IService; /** * <p> * 积分消费设置 服务类 * </p> * * @author ChenYong * @since 2020-01-06 */ public interface IntegrationConsumeSettingService extends IService<IntegrationConsumeSetting> { }
c3c3d8dc9d54be60ccae24075e5ebc0e441e02a4
0af8b92686a58eb0b64e319b22411432aca7a8f3
/single-large-project/src/test/java/org/gradle/test/performancenull_336/Testnull_33596.java
1809d973cf855c02eaab162079028ad1213f500d
[]
no_license
gradle/performance-comparisons
b0d38db37c326e0ce271abebdb3c91769b860799
e53dc7182fafcf9fedf07920cbbea8b40ee4eef4
refs/heads/master
2023-08-14T19:24:39.164276
2022-11-24T05:18:33
2022-11-24T05:18:33
80,121,268
17
15
null
2022-09-30T08:04:35
2017-01-26T14:25:33
null
UTF-8
Java
false
false
308
java
package org.gradle.test.performancenull_336; import static org.junit.Assert.*; public class Testnull_33596 { private final Productionnull_33596 production = new Productionnull_33596("value"); @org.junit.Test public void test() { assertEquals(production.getProperty(), "value"); } }
39f58130d9c8a15bcaf4b64c03d3990347c6cf75
94c4780dccca8225b5242613dcb614831295bae0
/src/ar/uba/dc/so/memoryManagement/MemoryPagingByDemandFIFO.java
eae24e17b76714876927988ea2d56791e7e422b6
[]
no_license
chivasirre3/mms-ar
e2deef62af5e0ab15346626dd828ca19cfa5a60a
a969253536527a7e8872eee8383e7711d71b2429
refs/heads/master
2016-08-11T16:56:09.429565
2009-12-30T16:48:07
2009-12-30T16:48:07
45,148,486
0
0
null
null
null
null
UTF-8
Java
false
false
1,066
java
package ar.uba.dc.so.memoryManagement; public class MemoryPagingByDemandFIFO extends MemoryPagingByDemand { public MemoryPagingByDemandFIFO(int sizeInKb, int pageSizeInKb) throws Exception { super(sizeInKb, pageSizeInKb); } @Override public void freePartition() { Integer slectedProcessId = null; Integer selectedPageIndex = null; Integer allocatedInMemory = null; for (Integer processId : processesPages.keySet()) { for (Integer page : processesPages.get(processId).keySet()) { Integer aux = (Integer) processesPages.get(processId).get(page).get("allocatedInMemory"); if ((Boolean) processesPages.get(processId).get(page).get("inMemory") && (allocatedInMemory == null || (aux != null && aux <= allocatedInMemory))) { allocatedInMemory = aux; slectedProcessId = processId; selectedPageIndex = page; } } } processesPages.get(slectedProcessId).get(selectedPageIndex).put("inMemory", Boolean.FALSE); freePartition((Integer) processesPages.get(slectedProcessId).get(selectedPageIndex).get("partitionPos")); } }
1d25326726dee3617be5dd4c82e7726bf88cbcf3
6dfedb93c367fa0b9625c1db350c556cdbed0713
/app/src/main/java/com/tyut/activity/ActivityDetailActivity.java
d123a90f04333a2df8cc727269647c50da9934a6
[]
no_license
VEGETALOADING/HealthAndroid
8c88c362ef21998b0512b4bb2de8d52bb45490a6
782ae613e8918bc55b2bdcf70563be24663c1db4
refs/heads/master
2022-04-20T15:51:56.048727
2020-04-13T16:06:43
2020-04-13T16:06:43
236,984,971
1
0
null
null
null
null
UTF-8
Java
false
false
51,970
java
package com.tyut.activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import android.os.Looper; import android.os.Message; import android.text.Editable; import android.text.Spannable; import android.text.SpannableStringBuilder; import android.text.TextPaint; import android.text.method.LinkMovementMethod; import android.text.style.ClickableSpan; import android.text.style.ForegroundColorSpan; import android.text.style.ImageSpan; import android.view.KeyEvent; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.PopupWindow; import android.widget.RelativeLayout; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.DividerItemDecoration; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import com.bumptech.glide.Glide; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import com.tyut.R; import com.tyut.adapter.CommentListAdapter; import com.tyut.adapter.MyNineAdapter; import com.tyut.fragment.FaceFragment; import com.tyut.utils.EmojiUtil; import com.tyut.utils.OkHttpCallback; import com.tyut.utils.OkHttpUtils; import com.tyut.utils.SPSingleton; import com.tyut.utils.SoftKeyBoardListener; import com.tyut.utils.StringUtil; import com.tyut.utils.ViewUtil; import com.tyut.view.GlideRoundTransform; import com.tyut.view.NinePhotoView; import com.tyut.vo.ActivityVO; import com.tyut.vo.CommentVO; import com.tyut.vo.Emoji; import com.tyut.vo.Reply; import com.tyut.vo.ServerResponse; import com.tyut.vo.UserVO; import com.tyut.widget.ChooseMentionPopUpWindow; import com.tyut.widget.DeleteActivityPUW; import com.tyut.widget.ReplyPUW; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.text.ParseException; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import static com.tyut.utils.EmojiUtil.decodeSampledBitmapFromResource; public class ActivityDetailActivity extends AppCompatActivity implements View.OnClickListener, FaceFragment.OnEmojiClickListener{ RelativeLayout whole_sv; LinearLayout return_ll; ImageView more_iv; ImageView userPic_iv; TextView userName_tv; TextView shareTime_tv; TextView content_tv; LinearLayout commentNotNone_ll; TextView commentNone_tv; TextView commentCount_tv; RecyclerView comment_Rv; LinearLayout like_ll; LinearLayout comment_ll; LinearLayout favorite_ll; NinePhotoView ninePhotoView; LinearLayout commentAc_ll; EditText commentAc_et; ImageView face_commentAc_iv; ImageView mention_commentAc_iv; TextView send_commentAc_tv; LinearLayout addFace_hide_ll; ImageView like_iv; TextView like_tv; TextView comment_tv; ImageView favorite_iv; TextView favorite_tv; private ActivityVO activityVO; private Integer activityId; private CommentVO commentVO; private Integer objectId; private Integer category; private UserVO userVO; private Boolean ifFirst; private List<UserVO> vos = new ArrayList<>(); private static final int COMMENTVOLIST = 1; private static final int ACTIVITYVO = 2; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); ifFirst = true; setContentView(R.layout.activity_activitydetail); return_ll = findViewById(R.id.return_o); more_iv = findViewById(R.id.more_iv); userName_tv = findViewById(R.id.username_activity); userPic_iv = findViewById(R.id.userpic_activity); shareTime_tv = findViewById(R.id.sharetime_activity); content_tv = findViewById(R.id.content_activity); commentNone_tv = findViewById(R.id.comment_none_tv); commentNotNone_ll = findViewById(R.id.comment_notnone_ll); commentCount_tv = findViewById(R.id.commentcount_tv); comment_Rv = findViewById(R.id.comment_Rv); like_ll = findViewById(R.id.like_ll_detail); comment_ll = findViewById(R.id.comment_ll_detail); favorite_ll = findViewById(R.id.favorite_ll_detail); ninePhotoView = findViewById(R.id.nine_photo); commentAc_ll = findViewById(R.id.edittext_commentAc_ll); face_commentAc_iv = findViewById(R.id.face_commentAc_iv); mention_commentAc_iv = findViewById(R.id.mention_commentAc_iv); send_commentAc_tv = findViewById(R.id.send_commentAc_tv); commentAc_et = findViewById(R.id.commentAc_et); like_iv = findViewById(R.id.like_iv); like_tv = findViewById(R.id.like_tv); favorite_iv = findViewById(R.id.favorite_iv); favorite_tv = findViewById(R.id.favorite_tv); comment_tv = findViewById(R.id.comment_tv); addFace_hide_ll = findViewById(R.id.addFace_hide_ll); whole_sv = findViewById(R.id.whole_sv); if (whole_sv.getForeground()!=null){ whole_sv.getForeground().setAlpha(0); } like_ll.setOnClickListener(this); comment_ll.setOnClickListener(this); favorite_ll.setOnClickListener(this); mention_commentAc_iv.setOnClickListener(this); face_commentAc_iv.setOnClickListener(this); commentAc_et.setOnClickListener(this); send_commentAc_tv.setOnClickListener(this); more_iv.setOnClickListener(this); userPic_iv.setOnClickListener(this); return_ll.setOnClickListener(this); FaceFragment faceFragment = FaceFragment.Instance(); getSupportFragmentManager().beginTransaction().add(R.id.faceContent,faceFragment).commit(); } private Handler mHandler = new Handler(){ @Override public void handleMessage(@NonNull Message msg) { switch (msg.what){ case 0: whole_sv.getForeground().setAlpha((int)msg.obj); break; case 1: final List<CommentVO> commentVOList = (List<CommentVO>) msg.obj; if(commentVOList.size() == 0){ commentNotNone_ll.setVisibility(View.GONE); commentNone_tv.setVisibility(View.VISIBLE); }else{ commentNotNone_ll.setVisibility(View.VISIBLE); commentNone_tv.setVisibility(View.GONE); comment_Rv.setLayoutManager(new LinearLayoutManager(ActivityDetailActivity.this, LinearLayoutManager.VERTICAL, false)); comment_Rv.addItemDecoration(new DividerItemDecoration(ActivityDetailActivity.this, DividerItemDecoration.VERTICAL)); CommentListAdapter adapter = new CommentListAdapter(ActivityDetailActivity.this, commentVOList, new CommentListAdapter.OnItemClickListener() { @Override public void onClick(int position) { //回复 objectId = commentVOList.get(position).getId(); category = 1; InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if(imm.isActive()){ imm.isActive(); imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); } commentAc_ll.setVisibility(View.VISIBLE); commentAc_et.setFocusable(true); commentAc_et.setFocusableInTouchMode(true); commentAc_et.requestFocus(); } }, new CommentListAdapter.OnUpdateListener(){ @Override public void onUpdate() { ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { initComment(); } }); } }); adapter.setReplyListener(new CommentListAdapter.OnReplyListener() { @Override public void onReply(final Reply reply) { ViewUtil.changeAlpha(mHandler, 0); final ReplyPUW replyPUW = new ReplyPUW(ActivityDetailActivity.this, reply); objectId = reply.getId(); category = 2; replyPUW .setDelete(new ReplyPUW.IDeleteListener() { @Override public void onDelete(ReplyPUW puw) { OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/comment/delete.do?id="+reply.getId()+"&userid="+userVO.getId()+"&category=1", new OkHttpCallback(){ @Override public void onFinish(String status, final String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); final ServerResponse serverResponse=gson.fromJson(msg, ServerResponse.class); if(serverResponse.getStatus() == 0){ (ActivityDetailActivity.this).runOnUiThread(new Runnable() { @Override public void run() { initComment(); } }); } Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } ); } }).setReplyListener(new ReplyPUW.IReplyListener() { @Override public void onReply(ReplyPUW puw) { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if(imm.isActive()){ imm.isActive(); imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); } commentAc_ll.setVisibility(View.VISIBLE); commentAc_et.setFocusable(true); commentAc_et.setFocusableInTouchMode(true); commentAc_et.requestFocus(); } }) .setReportListener(new ReplyPUW.IReportListener() { @Override public void onReport(ReplyPUW puw) { OkHttpUtils.get("http://"+getString(R.string.url)+":8080//portal/report/select.do?userid=" +userVO.getId() +"&objectid="+reply.getId() +"&category=1", new OkHttpCallback(){ @Override public void onFinish(String status, String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse serverResponse = gson.fromJson(msg, ServerResponse.class); if(serverResponse.getStatus() == 0){ Intent intent = new Intent(ActivityDetailActivity.this, ReportActivity.class); intent.putExtra("category", 1); intent.putExtra("objectid", reply.getId()); ActivityDetailActivity.this.startActivity(intent); }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } }).showFoodPopWindow(); replyPUW.getPopupWindow().setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { ViewUtil.changeAlpha(mHandler, 1); } }); } }); comment_Rv.setAdapter(adapter); } break; case 2 : activityVO = ((List<ActivityVO>)msg.obj).get(0); Glide.with(ActivityDetailActivity.this) .load("http://"+getString(R.string.url)+":8080/userpic/" + activityVO.getUserpic()) .transform(new GlideRoundTransform(ActivityDetailActivity.this, 25)) .into(userPic_iv); if(activityVO.getPic() != null && !"".equals(activityVO.getPic())) { String picStr = activityVO.getPic(); List<String> picList = Arrays.asList(picStr.split("/")); MyNineAdapter adapter = new MyNineAdapter(ActivityDetailActivity.this, picList); ninePhotoView.setAdapter(adapter); } userName_tv.setText(activityVO.getUsername()); try { shareTime_tv.setText(StringUtil.convertSharetime(activityVO.getCreateTime())); } catch (ParseException e) { e.printStackTrace(); } { if (activityVO.getIfFavorite()) { favorite_iv.setImageResource(R.mipmap.icon_favorite_selected); favorite_tv.setTextColor(ActivityDetailActivity.this.getResources().getColor(R.color.green_light)); } else { favorite_iv.setImageResource(R.mipmap.icon_favorite_unselected); favorite_tv.setTextColor(ActivityDetailActivity.this.getResources().getColor(R.color.nav_text_default)); } if (activityVO.getFavoriteCount() > 0) { favorite_tv.setText(activityVO.getFavoriteCount() + ""); } else { favorite_tv.setText("收藏"); } if (activityVO.getIfLike()) { like_iv.setImageResource(R.mipmap.icon_like_selected); like_tv.setTextColor(ActivityDetailActivity.this.getResources().getColor(R.color.green_light)); } else { like_iv.setImageResource(R.mipmap.icon_like_unselected); like_tv.setTextColor(ActivityDetailActivity.this.getResources().getColor(R.color.nav_text_default)); } if (activityVO.getLikeCount() > 0) { like_tv.setText(activityVO.getLikeCount() + ""); } else { like_tv.setText("赞"); } if (activityVO.getCommentCount() > 0) { comment_tv.setText(activityVO.getCommentCount() + ""); } else { comment_tv.setText("评论"); } } { final String str = activityVO.getContent(); SpannableStringBuilder style=new SpannableStringBuilder(str); final Map<Integer, Integer> mentionMap = StringUtil.getMention(str); final Map<Integer, Integer> topicsMap = StringUtil.getTopics(str); final Map<Integer, Integer> emojiMap = StringUtil.getEmoji(str); Set<Integer> mentionKeys = mentionMap.keySet(); Set<Integer> topicKeys = topicsMap.keySet(); Set<Integer> emojiKeys = emojiMap.keySet(); Iterator<Emoji> iterator = EmojiUtil.getEmojiList().iterator(); for (final Integer key : emojiKeys) { Emoji emoji = null; String tempText = str.substring(key, emojiMap.get(key)); while (iterator.hasNext()) { emoji = iterator.next(); if (tempText.equals(emoji.getContent())) { //转换为Span并设置Span的大小 style.setSpan(new ImageSpan(ActivityDetailActivity.this, decodeSampledBitmapFromResource(ActivityDetailActivity.this.getResources(), emoji.getImageUri() , EmojiUtil.dip2px(ActivityDetailActivity.this, 18), EmojiUtil.dip2px(ActivityDetailActivity.this, 18))), key, emojiMap.get(key), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); break; } } } for (final Integer key : mentionKeys) { style.setSpan(new ClickableSpan() { @Override public void updateDrawState(TextPaint ds) { super.updateDrawState(ds); ds.setUnderlineText(false);//去掉下划线 } @Override public void onClick(View widget) { //跳转用户动态 Intent intent = new Intent(ActivityDetailActivity.this, ActivityActivity.class); String sub = str.substring(key, mentionMap.get(key)); intent.putExtra("username", sub.substring(1)); ActivityDetailActivity.this.startActivity(intent); } }, key, mentionMap.get(key), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); style.setSpan(new ForegroundColorSpan(ActivityDetailActivity.this.getResources().getColor(R.color.green_light)),key,mentionMap.get(key), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); } for (final Integer key : topicKeys) { style.setSpan(new ClickableSpan() { @Override public void updateDrawState(TextPaint ds) { super.updateDrawState(ds); //ds.setColor(Color.parseColor("#FF0090FF"));//设置颜色 ds.setUnderlineText(false);//去掉下划线 } @Override public void onClick(View widget) { //跳转话题页面 Intent intent = new Intent(ActivityDetailActivity.this, TopicActivity.class); intent.putExtra("topicname", str.substring(key, topicsMap.get(key))); ActivityDetailActivity.this.startActivity(intent); } }, key, topicsMap.get(key), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); style.setSpan(new ForegroundColorSpan(ActivityDetailActivity.this.getResources().getColor(R.color.green_light)),key,topicsMap.get(key), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); } content_tv.setText(style); content_tv.setMovementMethod(LinkMovementMethod.getInstance()); } if(getIntent().getIntExtra("action", 0) == 1 && ifFirst == true){ ifFirst = false; objectId = activityVO.getId(); category = 0; InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if(imm.isActive()){ imm.isActive(); imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); } commentAc_ll.setVisibility(View.VISIBLE); commentAc_et.setFocusable(true); commentAc_et.setFocusableInTouchMode(true); commentAc_et.requestFocus(); } break; } } }; @Override protected void onResume() { super.onResume(); onKeyBoardListener(); //Toast.makeText(this, "onResume", Toast.LENGTH_SHORT).show(); userVO = (UserVO) SPSingleton.get(ActivityDetailActivity.this, SPSingleton.USERINFO).readObject("user", UserVO.class); activityId = (Integer) getIntent().getIntExtra("activityid", 0); initActivity(); initComment(); initFriend(); } private void initActivity(){ OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/activity/find.do?currentUserId="+userVO.getId()+"&id=" + activityId, new OkHttpCallback(){ @Override public void onFinish(String status, String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse<List<ActivityVO>> serverResponse = gson.fromJson(msg, new TypeToken<ServerResponse<List<ActivityVO>>>(){}.getType()); if(serverResponse.getStatus() == 0) { Message message = new Message(); message.what= ACTIVITYVO; message.obj = serverResponse.getData(); mHandler.sendMessage(message); }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } private void initComment(){ OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/comment/find.do?objectid="+activityId+"&category=0&currentUserId="+userVO.getId(), new OkHttpCallback(){ @Override public void onFinish(String status, String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse<List<CommentVO>> serverResponse = gson.fromJson(msg, new TypeToken<ServerResponse<List<CommentVO>>>(){}.getType()); Message message = new Message(); message.what= COMMENTVOLIST; message.obj = serverResponse.getData(); mHandler.sendMessage(message); } } ); } private void initFriend(){ OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/friend/find.do?id=" + userVO.getId(), new OkHttpCallback(){ @Override public void onFinish(String status, String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse<List<UserVO>> serverResponse = gson.fromJson(msg, new TypeToken<ServerResponse<List<UserVO>>>(){}.getType()); if(serverResponse.getStatus() == 0){ vos = serverResponse.getData(); }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } @Override public void onClick(View v) { switch (v.getId()){ case R.id.more_iv: ViewUtil.changeAlpha(mHandler, 0); final DeleteActivityPUW deleteActivityPUW = new DeleteActivityPUW(ActivityDetailActivity.this, activityVO); deleteActivityPUW .setDelete(new DeleteActivityPUW.IDeleteListener() { @Override public void onDelete(DeleteActivityPUW puw) { OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/activity/delete.do?userid="+userVO.getId()+"&id="+activityVO.getId(), new OkHttpCallback(){ @Override public void onFinish(String status, final String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); final ServerResponse serverResponse=gson.fromJson(msg, ServerResponse.class); if(serverResponse.getStatus() == 0){ ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); ActivityDetailActivity.this.finish(); } }); }else { Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } }).setReport(new DeleteActivityPUW.IReportListener() { @Override public void onReport(DeleteActivityPUW deleteActivityPUW) { OkHttpUtils.get("http://"+getString(R.string.url)+":8080//portal/report/select.do?userid=" +userVO.getId() +"&objectid="+activityVO.getId() +"&category=0", new OkHttpCallback(){ @Override public void onFinish(String status, String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse serverResponse = gson.fromJson(msg, ServerResponse.class); if(serverResponse.getStatus() == 0){ Intent intent = new Intent(ActivityDetailActivity.this, ReportActivity.class); intent.putExtra("category", 0); intent.putExtra("objectid", activityVO.getId()); ActivityDetailActivity.this.startActivity(intent); }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } }) .setTOP(new DeleteActivityPUW.ITopListener() { @Override public void onTop(DeleteActivityPUW deleteActivityPUW) { OkHttpUtils.get("http://"+ActivityDetailActivity.this.getString(R.string.url)+":8080/portal/user/update.do?id="+userVO.getId()+"&topacid="+activityId, new OkHttpCallback(){ @Override public void onFinish(String status, final String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse<UserVO> serverResponse = gson.fromJson(msg, new TypeToken<ServerResponse<UserVO>>(){}.getType()); if(serverResponse.getStatus() == 0){ SPSingleton util = SPSingleton.get(ActivityDetailActivity.this,SPSingleton.USERINFO); util.delete("user"); util.putString("user", gson.toJson(serverResponse.getData())); (ActivityDetailActivity.this).runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(ActivityDetailActivity.this, "置顶成功", Toast.LENGTH_SHORT).show(); //onResume(); } }); }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } }) .setCancelTop(new DeleteActivityPUW.ICancelTopListener() { @Override public void onCancelTop(DeleteActivityPUW deleteActivityPUW) { OkHttpUtils.get("http://"+ActivityDetailActivity.this.getString(R.string.url)+":8080/portal/user/update.do?id="+userVO.getId()+"&topacid=0", new OkHttpCallback(){ @Override public void onFinish(String status, final String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse<UserVO> serverResponse = gson.fromJson(msg, new TypeToken<ServerResponse<UserVO>>(){}.getType()); if(serverResponse.getStatus() == 0){ SPSingleton util = SPSingleton.get(ActivityDetailActivity.this,SPSingleton.USERINFO); util.delete("user"); util.putString("user", gson.toJson(serverResponse.getData())); (ActivityDetailActivity.this).runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(ActivityDetailActivity.this, "取消置顶成功", Toast.LENGTH_SHORT).show(); //onResume(); } }); }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); } }) /* .setShare(new DeleteActivityPUW.IShareListener() { @Override public void onShare(DeleteActivityPUW deleteActivityPUW) { 分享待实现 } }) */ .showFoodPopWindow(); deleteActivityPUW.getPopupWindow().setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { ViewUtil.changeAlpha(mHandler, 1); } }); break; case R.id.return_o: this.finish(); break; case R.id.like_ll_detail: OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/like/addorcancel.do?userid="+userVO.getId()+"&objectid="+activityVO.getId()+"&category=0", new OkHttpCallback(){ @Override public void onFinish(String status, final String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); final ServerResponse serverResponse=gson.fromJson(msg, ServerResponse.class); if(serverResponse.getStatus() == 0){ if((Double) serverResponse.getData() == 56){ //点赞成功 //子线程更新UI ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { like_iv.setImageResource(R.mipmap.icon_like_selected); like_tv.setTextColor(ActivityDetailActivity.this.getResources().getColor(R.color.green_light)); like_tv.setText(serverResponse.getMsg()); } }); Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, "已点赞", Toast.LENGTH_SHORT).show(); Looper.loop(); }else if((Double) serverResponse.getData() == 58){ ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { like_iv.setImageResource(R.mipmap.icon_like_unselected); like_tv.setTextColor(ActivityDetailActivity.this.getResources().getColor(R.color.nav_text_default)); like_tv.setText( Double.parseDouble(serverResponse.getMsg()) == 0 ? "赞" : serverResponse.getMsg()); } }); Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, "已取消", Toast.LENGTH_SHORT).show(); Looper.loop(); } }else{ Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); break; case R.id.favorite_ll_detail: OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/favorite/addorcancel.do?userid="+userVO.getId()+"&category=1&objectid="+activityVO.getId(), new OkHttpCallback(){ @Override public void onFinish(String status, final String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); final ServerResponse serverResponse=gson.fromJson(msg, ServerResponse.class); if(serverResponse.getStatus() == 0){ if((Double) serverResponse.getData() == 45){ //子线程更新UI ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { favorite_iv.setImageResource(R.mipmap.icon_favorite_selected); favorite_tv.setTextColor( ActivityDetailActivity.this.getResources().getColor(R.color.green_light)); favorite_tv.setText(serverResponse.getMsg()); } }); Looper.prepare(); Toast.makeText( ActivityDetailActivity.this, "收藏成功", Toast.LENGTH_SHORT).show(); Looper.loop(); }else if((Double) serverResponse.getData() == 47){ ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { favorite_iv.setImageResource(R.mipmap.icon_favorite_unselected); favorite_tv.setTextColor( ActivityDetailActivity.this.getResources().getColor(R.color.nav_text_default)); favorite_tv.setText( Double.parseDouble(serverResponse.getMsg()) == 0 ? "收藏" : serverResponse.getMsg()); } }); Looper.prepare(); Toast.makeText( ActivityDetailActivity.this, "取消收藏", Toast.LENGTH_SHORT).show(); Looper.loop(); } }else{ Looper.prepare(); Toast.makeText( ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } } ); break; case R.id.commentAc_et: addFace_hide_ll.setVisibility(View.GONE); break; case R.id.face_commentAc_iv: if(addFace_hide_ll.getVisibility() == View.VISIBLE) { addFace_hide_ll.setVisibility(View.GONE); }else { addFace_hide_ll.setVisibility(View.VISIBLE); } break; case R.id.mention_commentAc_iv: final ChooseMentionPopUpWindow mentionPopUpWindow = new ChooseMentionPopUpWindow(ActivityDetailActivity.this, vos); mentionPopUpWindow.setConfirm(new ChooseMentionPopUpWindow.IOnConfirmListener() { @Override public void onConfirm(ChooseMentionPopUpWindow weightPopUpWindow) { List<String> namesMentioned = mentionPopUpWindow.getUserNameSelected(); int selectionStart = commentAc_et.getSelectionStart();// 光标位置 Editable editable = commentAc_et.getText();// 原先内容 for (String s : namesMentioned) { if (selectionStart >= 0) { editable.insert(selectionStart, "@" + s + " ");// 在光标位置插入内容 //editable.insert(content_et.getSelectionStart(), " ");// 话题后面插入空格,至关重要 commentAc_et.setSelection(commentAc_et.getSelectionStart());// 移动光标到添加的内容后面 } } } }).showMentionPopWindow(); break; case R.id.comment_ll_detail: objectId = activityVO.getId(); category = 0; InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); if(imm.isActive()){ imm.isActive(); imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); } commentAc_ll.setVisibility(View.VISIBLE); commentAc_et.setFocusable(true); commentAc_et.setFocusableInTouchMode(true); commentAc_et.requestFocus(); break; case R.id.send_commentAc_tv: String content = null; try { content = URLEncoder.encode(commentAc_et.getText().toString(), "UTF-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } OkHttpUtils.get("http://"+getString(R.string.url)+":8080/portal/comment/add.do?userid=" + userVO.getId() +"&objectid="+objectId +"&content="+content +"&category="+category, new OkHttpCallback(){ @Override public void onFinish(String status, String msg) { super.onFinish(status, msg); //解析数据 Gson gson=new Gson(); ServerResponse serverResponse = gson.fromJson(msg, new TypeToken<ServerResponse>(){}.getType()); if(serverResponse.getStatus() == 0){ ActivityDetailActivity.this.runOnUiThread(new Runnable() { @Override public void run() { InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); initComment(); } }); } Looper.prepare(); Toast.makeText(ActivityDetailActivity.this, serverResponse.getMsg(), Toast.LENGTH_SHORT).show(); Looper.loop(); } } ); break; case R.id.userpic_activity: Intent intent = new Intent(ActivityDetailActivity.this, ActivityActivity.class); intent.putExtra("userid", activityVO.getUserid()); ActivityDetailActivity.this.startActivity(intent); break; } } private void onKeyBoardListener() { SoftKeyBoardListener.setListener(ActivityDetailActivity.this, new SoftKeyBoardListener.OnSoftKeyBoardChangeListener() { @Override public void keyBoardShow(int height) { } @Override public void keyBoardHide(int height) { //Log.e("软键盘", "键盘隐藏 高度" + height); commentAc_ll.setVisibility(View.GONE); addFace_hide_ll.setVisibility(View.GONE); commentAc_et.clearFocus(); commentAc_et.setText(null); } }); } @Override public void onEmojiDelete() { String text = commentAc_et.getText().toString(); if (text.isEmpty()) { return; } if ("]".equals(text.substring(text.length() - 1, text.length()))) { int index = text.lastIndexOf("["); if (index == -1) { int action = KeyEvent.ACTION_DOWN; int code = KeyEvent.KEYCODE_DEL; KeyEvent event = new KeyEvent(action, code); commentAc_et.onKeyDown(KeyEvent.KEYCODE_DEL, event); displayTextView(); return; } commentAc_et.getText().delete(index, text.length()); displayTextView(); return; } int action = KeyEvent.ACTION_DOWN; int code = KeyEvent.KEYCODE_DEL; KeyEvent event = new KeyEvent(action, code); commentAc_et.onKeyDown(KeyEvent.KEYCODE_DEL, event); displayTextView(); } private void displayTextView() { try { EmojiUtil.handlerEmojiText(commentAc_et, null, commentAc_et.getText().toString(), this); } catch (IOException e) { e.printStackTrace(); } } @Override public void onEmojiClick(Emoji emoji) { if (emoji != null) { int index = commentAc_et.getSelectionStart(); Editable editable = commentAc_et.getEditableText(); if (index < 0) { editable.append(emoji.getContent()); } else { editable.insert(index, emoji.getContent()); } } displayTextView(); } }
55e4dd5be510725ea2594abdebebd89542097759
e768ef0723d59931b62f05cfc8053c1a4f1d8b0b
/org.hl7.fhir.r5/src/main/java/org/hl7/fhir/r5/model/MedicationRequest.java
27ce0243000485cf4cdda1901807a073d0ee3acd
[ "Apache-2.0" ]
permissive
tobiasgirardet/org.hl7.fhir.core
feb9e63746af739d3e43752d53dc8b3a411879ba
fecf024952858a2a2fc7e2b0c86f603612075818
refs/heads/master
2023-02-21T04:16:47.604337
2023-02-16T02:03:37
2023-02-16T02:03:37
181,463,282
0
0
null
2019-04-15T10:20:25
2019-04-15T10:20:25
null
UTF-8
Java
false
false
255,868
java
package org.hl7.fhir.r5.model; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, \ are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this \ list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, \ this list of conditions and the following disclaimer in the documentation \ and/or other materials provided with the distribution. * Neither the name of HL7 nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND \ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. \ IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT \ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR \ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \ POSSIBILITY OF SUCH DAMAGE. */ // Generated on Tue, Dec 13, 2022 17:53+1100 for FHIR vcurrent import java.util.ArrayList; import java.util.Date; import java.util.List; import org.hl7.fhir.utilities.Utilities; import org.hl7.fhir.r5.model.Enumerations.*; import org.hl7.fhir.instance.model.api.IBaseBackboneElement; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.instance.model.api.ICompositeType; import ca.uhn.fhir.model.api.annotation.ResourceDef; import ca.uhn.fhir.model.api.annotation.SearchParamDefinition; import org.hl7.fhir.instance.model.api.IBaseBackboneElement; import ca.uhn.fhir.model.api.annotation.Child; import ca.uhn.fhir.model.api.annotation.ChildOrder; import ca.uhn.fhir.model.api.annotation.Description; import ca.uhn.fhir.model.api.annotation.Block; /** * An order or request for both supply of the medication and the instructions for administration of the medication to a patient. The resource is called "MedicationRequest" rather than "MedicationPrescription" or "MedicationOrder" to generalize the use across inpatient and outpatient settings, including care plans, etc., and to harmonize with workflow patterns. */ @ResourceDef(name="MedicationRequest", profile="http://hl7.org/fhir/StructureDefinition/MedicationRequest") public class MedicationRequest extends DomainResource { public enum MedicationRequestIntent { /** * The request is a suggestion made by someone/something that doesn't have an intention to ensure it occurs and without providing an authorization to act */ PROPOSAL, /** * The request represents an intention to ensure something occurs without providing an authorization for others to act. */ PLAN, /** * The request represents a request/demand and authorization for action */ ORDER, /** * The request represents the original authorization for the medication request. */ ORIGINALORDER, /** * The request represents an automatically generated supplemental authorization for action based on a parent authorization together with initial results of the action taken against that parent authorization.. */ REFLEXORDER, /** * The request represents the view of an authorization instantiated by a fulfilling system representing the details of the fulfiller's intention to act upon a submitted order. */ FILLERORDER, /** * The request represents an instance for the particular order and is used to generate a schedule of requests on a medication administration record (MAR). */ INSTANCEORDER, /** * The request represents a component or option for a RequestOrchestration that establishes timing, conditionality and/or other constraints among a set of requests. */ OPTION, /** * added to help the parsers with the generic types */ NULL; public static MedicationRequestIntent fromCode(String codeString) throws FHIRException { if (codeString == null || "".equals(codeString)) return null; if ("proposal".equals(codeString)) return PROPOSAL; if ("plan".equals(codeString)) return PLAN; if ("order".equals(codeString)) return ORDER; if ("original-order".equals(codeString)) return ORIGINALORDER; if ("reflex-order".equals(codeString)) return REFLEXORDER; if ("filler-order".equals(codeString)) return FILLERORDER; if ("instance-order".equals(codeString)) return INSTANCEORDER; if ("option".equals(codeString)) return OPTION; if (Configuration.isAcceptInvalidEnums()) return null; else throw new FHIRException("Unknown MedicationRequestIntent code '"+codeString+"'"); } public String toCode() { switch (this) { case PROPOSAL: return "proposal"; case PLAN: return "plan"; case ORDER: return "order"; case ORIGINALORDER: return "original-order"; case REFLEXORDER: return "reflex-order"; case FILLERORDER: return "filler-order"; case INSTANCEORDER: return "instance-order"; case OPTION: return "option"; case NULL: return null; default: return "?"; } } public String getSystem() { switch (this) { case PROPOSAL: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case PLAN: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case ORDER: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case ORIGINALORDER: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case REFLEXORDER: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case FILLERORDER: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case INSTANCEORDER: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case OPTION: return "http://hl7.org/fhir/CodeSystem/medicationrequest-intent"; case NULL: return null; default: return "?"; } } public String getDefinition() { switch (this) { case PROPOSAL: return "The request is a suggestion made by someone/something that doesn't have an intention to ensure it occurs and without providing an authorization to act"; case PLAN: return "The request represents an intention to ensure something occurs without providing an authorization for others to act."; case ORDER: return "The request represents a request/demand and authorization for action"; case ORIGINALORDER: return "The request represents the original authorization for the medication request."; case REFLEXORDER: return "The request represents an automatically generated supplemental authorization for action based on a parent authorization together with initial results of the action taken against that parent authorization.."; case FILLERORDER: return "The request represents the view of an authorization instantiated by a fulfilling system representing the details of the fulfiller's intention to act upon a submitted order."; case INSTANCEORDER: return "The request represents an instance for the particular order and is used to generate a schedule of requests on a medication administration record (MAR)."; case OPTION: return "The request represents a component or option for a RequestOrchestration that establishes timing, conditionality and/or other constraints among a set of requests."; case NULL: return null; default: return "?"; } } public String getDisplay() { switch (this) { case PROPOSAL: return "Proposal"; case PLAN: return "Plan"; case ORDER: return "Order"; case ORIGINALORDER: return "Original Order"; case REFLEXORDER: return "Reflex Order"; case FILLERORDER: return "Filler Order"; case INSTANCEORDER: return "Instance Order"; case OPTION: return "Option"; case NULL: return null; default: return "?"; } } } public static class MedicationRequestIntentEnumFactory implements EnumFactory<MedicationRequestIntent> { public MedicationRequestIntent fromCode(String codeString) throws IllegalArgumentException { if (codeString == null || "".equals(codeString)) if (codeString == null || "".equals(codeString)) return null; if ("proposal".equals(codeString)) return MedicationRequestIntent.PROPOSAL; if ("plan".equals(codeString)) return MedicationRequestIntent.PLAN; if ("order".equals(codeString)) return MedicationRequestIntent.ORDER; if ("original-order".equals(codeString)) return MedicationRequestIntent.ORIGINALORDER; if ("reflex-order".equals(codeString)) return MedicationRequestIntent.REFLEXORDER; if ("filler-order".equals(codeString)) return MedicationRequestIntent.FILLERORDER; if ("instance-order".equals(codeString)) return MedicationRequestIntent.INSTANCEORDER; if ("option".equals(codeString)) return MedicationRequestIntent.OPTION; throw new IllegalArgumentException("Unknown MedicationRequestIntent code '"+codeString+"'"); } public Enumeration<MedicationRequestIntent> fromType(PrimitiveType<?> code) throws FHIRException { if (code == null) return null; if (code.isEmpty()) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.NULL, code); String codeString = ((PrimitiveType) code).asStringValue(); if (codeString == null || "".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.NULL, code); if ("proposal".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.PROPOSAL, code); if ("plan".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.PLAN, code); if ("order".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.ORDER, code); if ("original-order".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.ORIGINALORDER, code); if ("reflex-order".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.REFLEXORDER, code); if ("filler-order".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.FILLERORDER, code); if ("instance-order".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.INSTANCEORDER, code); if ("option".equals(codeString)) return new Enumeration<MedicationRequestIntent>(this, MedicationRequestIntent.OPTION, code); throw new FHIRException("Unknown MedicationRequestIntent code '"+codeString+"'"); } public String toCode(MedicationRequestIntent code) { if (code == MedicationRequestIntent.PROPOSAL) return "proposal"; if (code == MedicationRequestIntent.PLAN) return "plan"; if (code == MedicationRequestIntent.ORDER) return "order"; if (code == MedicationRequestIntent.ORIGINALORDER) return "original-order"; if (code == MedicationRequestIntent.REFLEXORDER) return "reflex-order"; if (code == MedicationRequestIntent.FILLERORDER) return "filler-order"; if (code == MedicationRequestIntent.INSTANCEORDER) return "instance-order"; if (code == MedicationRequestIntent.OPTION) return "option"; return "?"; } public String toSystem(MedicationRequestIntent code) { return code.getSystem(); } } public enum MedicationrequestStatus { /** * The request is 'actionable', but not all actions that are implied by it have occurred yet. */ ACTIVE, /** * Actions implied by the request are to be temporarily halted. The request might or might not be resumed. May also be called 'suspended'. */ ONHOLD, /** * The request is no longer active and the subject should no longer be taking the medication. */ ENDED, /** * Actions implied by the request are to be permanently halted, before all of the administrations occurred. This should not be used if the original order was entered in error */ STOPPED, /** * All actions that are implied by the request have occurred. */ COMPLETED, /** * The request has been withdrawn before any administrations have occurred */ CANCELLED, /** * The request was recorded against the wrong patient or for some reason should not have been recorded (e.g. wrong medication, wrong dose, etc). Some of the actions that are implied by the medication request may have occurred. For example, the medication may have been dispensed and the patient may have taken some of the medication. */ ENTEREDINERROR, /** * The request is not yet 'actionable', e.g. it is a work in progress, requires sign-off, verification or needs to be run through decision support process. */ DRAFT, /** * The authoring/source system does not know which of the status values currently applies for this request. Note: This concept is not to be used for 'other' - one of the listed statuses is presumed to apply, but the authoring/source system does not know which. */ UNKNOWN, /** * added to help the parsers with the generic types */ NULL; public static MedicationrequestStatus fromCode(String codeString) throws FHIRException { if (codeString == null || "".equals(codeString)) return null; if ("active".equals(codeString)) return ACTIVE; if ("on-hold".equals(codeString)) return ONHOLD; if ("ended".equals(codeString)) return ENDED; if ("stopped".equals(codeString)) return STOPPED; if ("completed".equals(codeString)) return COMPLETED; if ("cancelled".equals(codeString)) return CANCELLED; if ("entered-in-error".equals(codeString)) return ENTEREDINERROR; if ("draft".equals(codeString)) return DRAFT; if ("unknown".equals(codeString)) return UNKNOWN; if (Configuration.isAcceptInvalidEnums()) return null; else throw new FHIRException("Unknown MedicationrequestStatus code '"+codeString+"'"); } public String toCode() { switch (this) { case ACTIVE: return "active"; case ONHOLD: return "on-hold"; case ENDED: return "ended"; case STOPPED: return "stopped"; case COMPLETED: return "completed"; case CANCELLED: return "cancelled"; case ENTEREDINERROR: return "entered-in-error"; case DRAFT: return "draft"; case UNKNOWN: return "unknown"; case NULL: return null; default: return "?"; } } public String getSystem() { switch (this) { case ACTIVE: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case ONHOLD: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case ENDED: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case STOPPED: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case COMPLETED: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case CANCELLED: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case ENTEREDINERROR: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case DRAFT: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case UNKNOWN: return "http://hl7.org/fhir/CodeSystem/medicationrequest-status"; case NULL: return null; default: return "?"; } } public String getDefinition() { switch (this) { case ACTIVE: return "The request is 'actionable', but not all actions that are implied by it have occurred yet."; case ONHOLD: return "Actions implied by the request are to be temporarily halted. The request might or might not be resumed. May also be called 'suspended'."; case ENDED: return "The request is no longer active and the subject should no longer be taking the medication."; case STOPPED: return "Actions implied by the request are to be permanently halted, before all of the administrations occurred. This should not be used if the original order was entered in error"; case COMPLETED: return "All actions that are implied by the request have occurred."; case CANCELLED: return "The request has been withdrawn before any administrations have occurred"; case ENTEREDINERROR: return "The request was recorded against the wrong patient or for some reason should not have been recorded (e.g. wrong medication, wrong dose, etc). Some of the actions that are implied by the medication request may have occurred. For example, the medication may have been dispensed and the patient may have taken some of the medication."; case DRAFT: return "The request is not yet 'actionable', e.g. it is a work in progress, requires sign-off, verification or needs to be run through decision support process."; case UNKNOWN: return "The authoring/source system does not know which of the status values currently applies for this request. Note: This concept is not to be used for 'other' - one of the listed statuses is presumed to apply, but the authoring/source system does not know which."; case NULL: return null; default: return "?"; } } public String getDisplay() { switch (this) { case ACTIVE: return "Active"; case ONHOLD: return "On Hold"; case ENDED: return "Ended"; case STOPPED: return "Stopped"; case COMPLETED: return "Completed"; case CANCELLED: return "Cancelled"; case ENTEREDINERROR: return "Entered in Error"; case DRAFT: return "Draft"; case UNKNOWN: return "Unknown"; case NULL: return null; default: return "?"; } } } public static class MedicationrequestStatusEnumFactory implements EnumFactory<MedicationrequestStatus> { public MedicationrequestStatus fromCode(String codeString) throws IllegalArgumentException { if (codeString == null || "".equals(codeString)) if (codeString == null || "".equals(codeString)) return null; if ("active".equals(codeString)) return MedicationrequestStatus.ACTIVE; if ("on-hold".equals(codeString)) return MedicationrequestStatus.ONHOLD; if ("ended".equals(codeString)) return MedicationrequestStatus.ENDED; if ("stopped".equals(codeString)) return MedicationrequestStatus.STOPPED; if ("completed".equals(codeString)) return MedicationrequestStatus.COMPLETED; if ("cancelled".equals(codeString)) return MedicationrequestStatus.CANCELLED; if ("entered-in-error".equals(codeString)) return MedicationrequestStatus.ENTEREDINERROR; if ("draft".equals(codeString)) return MedicationrequestStatus.DRAFT; if ("unknown".equals(codeString)) return MedicationrequestStatus.UNKNOWN; throw new IllegalArgumentException("Unknown MedicationrequestStatus code '"+codeString+"'"); } public Enumeration<MedicationrequestStatus> fromType(PrimitiveType<?> code) throws FHIRException { if (code == null) return null; if (code.isEmpty()) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.NULL, code); String codeString = ((PrimitiveType) code).asStringValue(); if (codeString == null || "".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.NULL, code); if ("active".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.ACTIVE, code); if ("on-hold".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.ONHOLD, code); if ("ended".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.ENDED, code); if ("stopped".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.STOPPED, code); if ("completed".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.COMPLETED, code); if ("cancelled".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.CANCELLED, code); if ("entered-in-error".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.ENTEREDINERROR, code); if ("draft".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.DRAFT, code); if ("unknown".equals(codeString)) return new Enumeration<MedicationrequestStatus>(this, MedicationrequestStatus.UNKNOWN, code); throw new FHIRException("Unknown MedicationrequestStatus code '"+codeString+"'"); } public String toCode(MedicationrequestStatus code) { if (code == MedicationrequestStatus.ACTIVE) return "active"; if (code == MedicationrequestStatus.ONHOLD) return "on-hold"; if (code == MedicationrequestStatus.ENDED) return "ended"; if (code == MedicationrequestStatus.STOPPED) return "stopped"; if (code == MedicationrequestStatus.COMPLETED) return "completed"; if (code == MedicationrequestStatus.CANCELLED) return "cancelled"; if (code == MedicationrequestStatus.ENTEREDINERROR) return "entered-in-error"; if (code == MedicationrequestStatus.DRAFT) return "draft"; if (code == MedicationrequestStatus.UNKNOWN) return "unknown"; return "?"; } public String toSystem(MedicationrequestStatus code) { return code.getSystem(); } } @Block() public static class MedicationRequestDoseComponent extends BackboneElement implements IBaseBackboneElement { /** * The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses. */ @Child(name = "renderedDosageInstruction", type = {StringType.class}, order=1, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Full representation of the dosage instructions", formalDefinition="The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses." ) protected StringType renderedDosageInstruction; /** * The period over which the medication is to be taken. Where there are multiple dosageInstruction lines (for example, tapering doses), this is the earliest date and the latest end date of the dosageInstructions. */ @Child(name = "effectiveDosePeriod", type = {Period.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Period over which the medication is to be taken", formalDefinition="The period over which the medication is to be taken. Where there are multiple dosageInstruction lines (for example, tapering doses), this is the earliest date and the latest end date of the dosageInstructions." ) protected Period effectiveDosePeriod; /** * Specific instructions for how the medication is to be used by the patient. */ @Child(name = "dosageInstruction", type = {Dosage.class}, order=3, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Specific instructions for how the medication should be taken", formalDefinition="Specific instructions for how the medication is to be used by the patient." ) protected List<Dosage> dosageInstruction; private static final long serialVersionUID = 1772757503L; /** * Constructor */ public MedicationRequestDoseComponent() { super(); } /** * @return {@link #renderedDosageInstruction} (The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses.). This is the underlying object with id, value and extensions. The accessor "getRenderedDosageInstruction" gives direct access to the value */ public StringType getRenderedDosageInstructionElement() { if (this.renderedDosageInstruction == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDoseComponent.renderedDosageInstruction"); else if (Configuration.doAutoCreate()) this.renderedDosageInstruction = new StringType(); // bb return this.renderedDosageInstruction; } public boolean hasRenderedDosageInstructionElement() { return this.renderedDosageInstruction != null && !this.renderedDosageInstruction.isEmpty(); } public boolean hasRenderedDosageInstruction() { return this.renderedDosageInstruction != null && !this.renderedDosageInstruction.isEmpty(); } /** * @param value {@link #renderedDosageInstruction} (The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses.). This is the underlying object with id, value and extensions. The accessor "getRenderedDosageInstruction" gives direct access to the value */ public MedicationRequestDoseComponent setRenderedDosageInstructionElement(StringType value) { this.renderedDosageInstruction = value; return this; } /** * @return The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses. */ public String getRenderedDosageInstruction() { return this.renderedDosageInstruction == null ? null : this.renderedDosageInstruction.getValue(); } /** * @param value The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses. */ public MedicationRequestDoseComponent setRenderedDosageInstruction(String value) { if (Utilities.noString(value)) this.renderedDosageInstruction = null; else { if (this.renderedDosageInstruction == null) this.renderedDosageInstruction = new StringType(); this.renderedDosageInstruction.setValue(value); } return this; } /** * @return {@link #effectiveDosePeriod} (The period over which the medication is to be taken. Where there are multiple dosageInstruction lines (for example, tapering doses), this is the earliest date and the latest end date of the dosageInstructions.) */ public Period getEffectiveDosePeriod() { if (this.effectiveDosePeriod == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDoseComponent.effectiveDosePeriod"); else if (Configuration.doAutoCreate()) this.effectiveDosePeriod = new Period(); // cc return this.effectiveDosePeriod; } public boolean hasEffectiveDosePeriod() { return this.effectiveDosePeriod != null && !this.effectiveDosePeriod.isEmpty(); } /** * @param value {@link #effectiveDosePeriod} (The period over which the medication is to be taken. Where there are multiple dosageInstruction lines (for example, tapering doses), this is the earliest date and the latest end date of the dosageInstructions.) */ public MedicationRequestDoseComponent setEffectiveDosePeriod(Period value) { this.effectiveDosePeriod = value; return this; } /** * @return {@link #dosageInstruction} (Specific instructions for how the medication is to be used by the patient.) */ public List<Dosage> getDosageInstruction() { if (this.dosageInstruction == null) this.dosageInstruction = new ArrayList<Dosage>(); return this.dosageInstruction; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequestDoseComponent setDosageInstruction(List<Dosage> theDosageInstruction) { this.dosageInstruction = theDosageInstruction; return this; } public boolean hasDosageInstruction() { if (this.dosageInstruction == null) return false; for (Dosage item : this.dosageInstruction) if (!item.isEmpty()) return true; return false; } public Dosage addDosageInstruction() { //3 Dosage t = new Dosage(); if (this.dosageInstruction == null) this.dosageInstruction = new ArrayList<Dosage>(); this.dosageInstruction.add(t); return t; } public MedicationRequestDoseComponent addDosageInstruction(Dosage t) { //3 if (t == null) return this; if (this.dosageInstruction == null) this.dosageInstruction = new ArrayList<Dosage>(); this.dosageInstruction.add(t); return this; } /** * @return The first repetition of repeating field {@link #dosageInstruction}, creating it if it does not already exist {3} */ public Dosage getDosageInstructionFirstRep() { if (getDosageInstruction().isEmpty()) { addDosageInstruction(); } return getDosageInstruction().get(0); } protected void listChildren(List<Property> children) { super.listChildren(children); children.add(new Property("renderedDosageInstruction", "string", "The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses.", 0, 1, renderedDosageInstruction)); children.add(new Property("effectiveDosePeriod", "Period", "The period over which the medication is to be taken. Where there are multiple dosageInstruction lines (for example, tapering doses), this is the earliest date and the latest end date of the dosageInstructions.", 0, 1, effectiveDosePeriod)); children.add(new Property("dosageInstruction", "Dosage", "Specific instructions for how the medication is to be used by the patient.", 0, java.lang.Integer.MAX_VALUE, dosageInstruction)); } @Override public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException { switch (_hash) { case 1718902050: /*renderedDosageInstruction*/ return new Property("renderedDosageInstruction", "string", "The full representation of the dose of the medication included in all dosage instructions. To be used when multiple dosage instructions are included to represent complex dosing such as increasing or tapering doses.", 0, 1, renderedDosageInstruction); case 322608453: /*effectiveDosePeriod*/ return new Property("effectiveDosePeriod", "Period", "The period over which the medication is to be taken. Where there are multiple dosageInstruction lines (for example, tapering doses), this is the earliest date and the latest end date of the dosageInstructions.", 0, 1, effectiveDosePeriod); case -1201373865: /*dosageInstruction*/ return new Property("dosageInstruction", "Dosage", "Specific instructions for how the medication is to be used by the patient.", 0, java.lang.Integer.MAX_VALUE, dosageInstruction); default: return super.getNamedProperty(_hash, _name, _checkValid); } } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 1718902050: /*renderedDosageInstruction*/ return this.renderedDosageInstruction == null ? new Base[0] : new Base[] {this.renderedDosageInstruction}; // StringType case 322608453: /*effectiveDosePeriod*/ return this.effectiveDosePeriod == null ? new Base[0] : new Base[] {this.effectiveDosePeriod}; // Period case -1201373865: /*dosageInstruction*/ return this.dosageInstruction == null ? new Base[0] : this.dosageInstruction.toArray(new Base[this.dosageInstruction.size()]); // Dosage default: return super.getProperty(hash, name, checkValid); } } @Override public Base setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 1718902050: // renderedDosageInstruction this.renderedDosageInstruction = TypeConvertor.castToString(value); // StringType return value; case 322608453: // effectiveDosePeriod this.effectiveDosePeriod = TypeConvertor.castToPeriod(value); // Period return value; case -1201373865: // dosageInstruction this.getDosageInstruction().add(TypeConvertor.castToDosage(value)); // Dosage return value; default: return super.setProperty(hash, name, value); } } @Override public Base setProperty(String name, Base value) throws FHIRException { if (name.equals("renderedDosageInstruction")) { this.renderedDosageInstruction = TypeConvertor.castToString(value); // StringType } else if (name.equals("effectiveDosePeriod")) { this.effectiveDosePeriod = TypeConvertor.castToPeriod(value); // Period } else if (name.equals("dosageInstruction")) { this.getDosageInstruction().add(TypeConvertor.castToDosage(value)); } else return super.setProperty(name, value); return value; } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 1718902050: return getRenderedDosageInstructionElement(); case 322608453: return getEffectiveDosePeriod(); case -1201373865: return addDosageInstruction(); default: return super.makeProperty(hash, name); } } @Override public String[] getTypesForProperty(int hash, String name) throws FHIRException { switch (hash) { case 1718902050: /*renderedDosageInstruction*/ return new String[] {"string"}; case 322608453: /*effectiveDosePeriod*/ return new String[] {"Period"}; case -1201373865: /*dosageInstruction*/ return new String[] {"Dosage"}; default: return super.getTypesForProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("renderedDosageInstruction")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.dose.renderedDosageInstruction"); } else if (name.equals("effectiveDosePeriod")) { this.effectiveDosePeriod = new Period(); return this.effectiveDosePeriod; } else if (name.equals("dosageInstruction")) { return addDosageInstruction(); } else return super.addChild(name); } public MedicationRequestDoseComponent copy() { MedicationRequestDoseComponent dst = new MedicationRequestDoseComponent(); copyValues(dst); return dst; } public void copyValues(MedicationRequestDoseComponent dst) { super.copyValues(dst); dst.renderedDosageInstruction = renderedDosageInstruction == null ? null : renderedDosageInstruction.copy(); dst.effectiveDosePeriod = effectiveDosePeriod == null ? null : effectiveDosePeriod.copy(); if (dosageInstruction != null) { dst.dosageInstruction = new ArrayList<Dosage>(); for (Dosage i : dosageInstruction) dst.dosageInstruction.add(i.copy()); }; } @Override public boolean equalsDeep(Base other_) { if (!super.equalsDeep(other_)) return false; if (!(other_ instanceof MedicationRequestDoseComponent)) return false; MedicationRequestDoseComponent o = (MedicationRequestDoseComponent) other_; return compareDeep(renderedDosageInstruction, o.renderedDosageInstruction, true) && compareDeep(effectiveDosePeriod, o.effectiveDosePeriod, true) && compareDeep(dosageInstruction, o.dosageInstruction, true); } @Override public boolean equalsShallow(Base other_) { if (!super.equalsShallow(other_)) return false; if (!(other_ instanceof MedicationRequestDoseComponent)) return false; MedicationRequestDoseComponent o = (MedicationRequestDoseComponent) other_; return compareValues(renderedDosageInstruction, o.renderedDosageInstruction, true); } public boolean isEmpty() { return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(renderedDosageInstruction, effectiveDosePeriod , dosageInstruction); } public String fhirType() { return "MedicationRequest.dose"; } } @Block() public static class MedicationRequestDispenseRequestComponent extends BackboneElement implements IBaseBackboneElement { /** * Indicates the quantity or duration for the first dispense of the medication. */ @Child(name = "initialFill", type = {}, order=1, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="First fill details", formalDefinition="Indicates the quantity or duration for the first dispense of the medication." ) protected MedicationRequestDispenseRequestInitialFillComponent initialFill; /** * The minimum period of time that must occur between dispenses of the medication. */ @Child(name = "dispenseInterval", type = {Duration.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Minimum period of time between dispenses", formalDefinition="The minimum period of time that must occur between dispenses of the medication." ) protected Duration dispenseInterval; /** * This indicates the validity period of a prescription (stale dating the Prescription). */ @Child(name = "validityPeriod", type = {Period.class}, order=3, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Time period supply is authorized for", formalDefinition="This indicates the validity period of a prescription (stale dating the Prescription)." ) protected Period validityPeriod; /** * An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus "3 repeats", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense. */ @Child(name = "numberOfRepeatsAllowed", type = {UnsignedIntType.class}, order=4, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Number of refills authorized", formalDefinition="An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus \"3 repeats\", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense." ) protected UnsignedIntType numberOfRepeatsAllowed; /** * The amount that is to be dispensed for one fill. */ @Child(name = "quantity", type = {Quantity.class}, order=5, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Amount of medication to supply per dispense", formalDefinition="The amount that is to be dispensed for one fill." ) protected Quantity quantity; /** * Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last. */ @Child(name = "expectedSupplyDuration", type = {Duration.class}, order=6, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Number of days supply per dispense", formalDefinition="Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last." ) protected Duration expectedSupplyDuration; /** * Indicates the intended performing Organization that will dispense the medication as specified by the prescriber. */ @Child(name = "dispenser", type = {Organization.class}, order=7, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Intended performer of dispense", formalDefinition="Indicates the intended performing Organization that will dispense the medication as specified by the prescriber." ) protected Reference dispenser; /** * Provides additional information to the dispenser, for example, counselling to be provided to the patient. */ @Child(name = "dispenserInstruction", type = {Annotation.class}, order=8, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Additional information for the dispenser", formalDefinition="Provides additional information to the dispenser, for example, counselling to be provided to the patient." ) protected List<Annotation> dispenserInstruction; /** * Provides information about the type of adherence packaging to be supplied for the medication dispense. */ @Child(name = "doseAdministrationAid", type = {CodeableConcept.class}, order=9, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Type of adherence packaging to use for the dispense", formalDefinition="Provides information about the type of adherence packaging to be supplied for the medication dispense." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medication-dose-aid") protected CodeableConcept doseAdministrationAid; private static final long serialVersionUID = -916083616L; /** * Constructor */ public MedicationRequestDispenseRequestComponent() { super(); } /** * @return {@link #initialFill} (Indicates the quantity or duration for the first dispense of the medication.) */ public MedicationRequestDispenseRequestInitialFillComponent getInitialFill() { if (this.initialFill == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.initialFill"); else if (Configuration.doAutoCreate()) this.initialFill = new MedicationRequestDispenseRequestInitialFillComponent(); // cc return this.initialFill; } public boolean hasInitialFill() { return this.initialFill != null && !this.initialFill.isEmpty(); } /** * @param value {@link #initialFill} (Indicates the quantity or duration for the first dispense of the medication.) */ public MedicationRequestDispenseRequestComponent setInitialFill(MedicationRequestDispenseRequestInitialFillComponent value) { this.initialFill = value; return this; } /** * @return {@link #dispenseInterval} (The minimum period of time that must occur between dispenses of the medication.) */ public Duration getDispenseInterval() { if (this.dispenseInterval == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.dispenseInterval"); else if (Configuration.doAutoCreate()) this.dispenseInterval = new Duration(); // cc return this.dispenseInterval; } public boolean hasDispenseInterval() { return this.dispenseInterval != null && !this.dispenseInterval.isEmpty(); } /** * @param value {@link #dispenseInterval} (The minimum period of time that must occur between dispenses of the medication.) */ public MedicationRequestDispenseRequestComponent setDispenseInterval(Duration value) { this.dispenseInterval = value; return this; } /** * @return {@link #validityPeriod} (This indicates the validity period of a prescription (stale dating the Prescription).) */ public Period getValidityPeriod() { if (this.validityPeriod == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.validityPeriod"); else if (Configuration.doAutoCreate()) this.validityPeriod = new Period(); // cc return this.validityPeriod; } public boolean hasValidityPeriod() { return this.validityPeriod != null && !this.validityPeriod.isEmpty(); } /** * @param value {@link #validityPeriod} (This indicates the validity period of a prescription (stale dating the Prescription).) */ public MedicationRequestDispenseRequestComponent setValidityPeriod(Period value) { this.validityPeriod = value; return this; } /** * @return {@link #numberOfRepeatsAllowed} (An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus "3 repeats", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense.). This is the underlying object with id, value and extensions. The accessor "getNumberOfRepeatsAllowed" gives direct access to the value */ public UnsignedIntType getNumberOfRepeatsAllowedElement() { if (this.numberOfRepeatsAllowed == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.numberOfRepeatsAllowed"); else if (Configuration.doAutoCreate()) this.numberOfRepeatsAllowed = new UnsignedIntType(); // bb return this.numberOfRepeatsAllowed; } public boolean hasNumberOfRepeatsAllowedElement() { return this.numberOfRepeatsAllowed != null && !this.numberOfRepeatsAllowed.isEmpty(); } public boolean hasNumberOfRepeatsAllowed() { return this.numberOfRepeatsAllowed != null && !this.numberOfRepeatsAllowed.isEmpty(); } /** * @param value {@link #numberOfRepeatsAllowed} (An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus "3 repeats", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense.). This is the underlying object with id, value and extensions. The accessor "getNumberOfRepeatsAllowed" gives direct access to the value */ public MedicationRequestDispenseRequestComponent setNumberOfRepeatsAllowedElement(UnsignedIntType value) { this.numberOfRepeatsAllowed = value; return this; } /** * @return An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus "3 repeats", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense. */ public int getNumberOfRepeatsAllowed() { return this.numberOfRepeatsAllowed == null || this.numberOfRepeatsAllowed.isEmpty() ? 0 : this.numberOfRepeatsAllowed.getValue(); } /** * @param value An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus "3 repeats", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense. */ public MedicationRequestDispenseRequestComponent setNumberOfRepeatsAllowed(int value) { if (this.numberOfRepeatsAllowed == null) this.numberOfRepeatsAllowed = new UnsignedIntType(); this.numberOfRepeatsAllowed.setValue(value); return this; } /** * @return {@link #quantity} (The amount that is to be dispensed for one fill.) */ public Quantity getQuantity() { if (this.quantity == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.quantity"); else if (Configuration.doAutoCreate()) this.quantity = new Quantity(); // cc return this.quantity; } public boolean hasQuantity() { return this.quantity != null && !this.quantity.isEmpty(); } /** * @param value {@link #quantity} (The amount that is to be dispensed for one fill.) */ public MedicationRequestDispenseRequestComponent setQuantity(Quantity value) { this.quantity = value; return this; } /** * @return {@link #expectedSupplyDuration} (Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.) */ public Duration getExpectedSupplyDuration() { if (this.expectedSupplyDuration == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.expectedSupplyDuration"); else if (Configuration.doAutoCreate()) this.expectedSupplyDuration = new Duration(); // cc return this.expectedSupplyDuration; } public boolean hasExpectedSupplyDuration() { return this.expectedSupplyDuration != null && !this.expectedSupplyDuration.isEmpty(); } /** * @param value {@link #expectedSupplyDuration} (Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.) */ public MedicationRequestDispenseRequestComponent setExpectedSupplyDuration(Duration value) { this.expectedSupplyDuration = value; return this; } /** * @return {@link #dispenser} (Indicates the intended performing Organization that will dispense the medication as specified by the prescriber.) */ public Reference getDispenser() { if (this.dispenser == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.dispenser"); else if (Configuration.doAutoCreate()) this.dispenser = new Reference(); // cc return this.dispenser; } public boolean hasDispenser() { return this.dispenser != null && !this.dispenser.isEmpty(); } /** * @param value {@link #dispenser} (Indicates the intended performing Organization that will dispense the medication as specified by the prescriber.) */ public MedicationRequestDispenseRequestComponent setDispenser(Reference value) { this.dispenser = value; return this; } /** * @return {@link #dispenserInstruction} (Provides additional information to the dispenser, for example, counselling to be provided to the patient.) */ public List<Annotation> getDispenserInstruction() { if (this.dispenserInstruction == null) this.dispenserInstruction = new ArrayList<Annotation>(); return this.dispenserInstruction; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequestDispenseRequestComponent setDispenserInstruction(List<Annotation> theDispenserInstruction) { this.dispenserInstruction = theDispenserInstruction; return this; } public boolean hasDispenserInstruction() { if (this.dispenserInstruction == null) return false; for (Annotation item : this.dispenserInstruction) if (!item.isEmpty()) return true; return false; } public Annotation addDispenserInstruction() { //3 Annotation t = new Annotation(); if (this.dispenserInstruction == null) this.dispenserInstruction = new ArrayList<Annotation>(); this.dispenserInstruction.add(t); return t; } public MedicationRequestDispenseRequestComponent addDispenserInstruction(Annotation t) { //3 if (t == null) return this; if (this.dispenserInstruction == null) this.dispenserInstruction = new ArrayList<Annotation>(); this.dispenserInstruction.add(t); return this; } /** * @return The first repetition of repeating field {@link #dispenserInstruction}, creating it if it does not already exist {3} */ public Annotation getDispenserInstructionFirstRep() { if (getDispenserInstruction().isEmpty()) { addDispenserInstruction(); } return getDispenserInstruction().get(0); } /** * @return {@link #doseAdministrationAid} (Provides information about the type of adherence packaging to be supplied for the medication dispense.) */ public CodeableConcept getDoseAdministrationAid() { if (this.doseAdministrationAid == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestComponent.doseAdministrationAid"); else if (Configuration.doAutoCreate()) this.doseAdministrationAid = new CodeableConcept(); // cc return this.doseAdministrationAid; } public boolean hasDoseAdministrationAid() { return this.doseAdministrationAid != null && !this.doseAdministrationAid.isEmpty(); } /** * @param value {@link #doseAdministrationAid} (Provides information about the type of adherence packaging to be supplied for the medication dispense.) */ public MedicationRequestDispenseRequestComponent setDoseAdministrationAid(CodeableConcept value) { this.doseAdministrationAid = value; return this; } protected void listChildren(List<Property> children) { super.listChildren(children); children.add(new Property("initialFill", "", "Indicates the quantity or duration for the first dispense of the medication.", 0, 1, initialFill)); children.add(new Property("dispenseInterval", "Duration", "The minimum period of time that must occur between dispenses of the medication.", 0, 1, dispenseInterval)); children.add(new Property("validityPeriod", "Period", "This indicates the validity period of a prescription (stale dating the Prescription).", 0, 1, validityPeriod)); children.add(new Property("numberOfRepeatsAllowed", "unsignedInt", "An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus \"3 repeats\", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense.", 0, 1, numberOfRepeatsAllowed)); children.add(new Property("quantity", "Quantity", "The amount that is to be dispensed for one fill.", 0, 1, quantity)); children.add(new Property("expectedSupplyDuration", "Duration", "Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.", 0, 1, expectedSupplyDuration)); children.add(new Property("dispenser", "Reference(Organization)", "Indicates the intended performing Organization that will dispense the medication as specified by the prescriber.", 0, 1, dispenser)); children.add(new Property("dispenserInstruction", "Annotation", "Provides additional information to the dispenser, for example, counselling to be provided to the patient.", 0, java.lang.Integer.MAX_VALUE, dispenserInstruction)); children.add(new Property("doseAdministrationAid", "CodeableConcept", "Provides information about the type of adherence packaging to be supplied for the medication dispense.", 0, 1, doseAdministrationAid)); } @Override public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException { switch (_hash) { case 1232961255: /*initialFill*/ return new Property("initialFill", "", "Indicates the quantity or duration for the first dispense of the medication.", 0, 1, initialFill); case 757112130: /*dispenseInterval*/ return new Property("dispenseInterval", "Duration", "The minimum period of time that must occur between dispenses of the medication.", 0, 1, dispenseInterval); case -1434195053: /*validityPeriod*/ return new Property("validityPeriod", "Period", "This indicates the validity period of a prescription (stale dating the Prescription).", 0, 1, validityPeriod); case -239736976: /*numberOfRepeatsAllowed*/ return new Property("numberOfRepeatsAllowed", "unsignedInt", "An integer indicating the number of times, in addition to the original dispense, (aka refills or repeats) that the patient can receive the prescribed medication. Usage Notes: This integer does not include the original order dispense. This means that if an order indicates dispense 30 tablets plus \"3 repeats\", then the order can be dispensed a total of 4 times and the patient can receive a total of 120 tablets. A prescriber may explicitly say that zero refills are permitted after the initial dispense.", 0, 1, numberOfRepeatsAllowed); case -1285004149: /*quantity*/ return new Property("quantity", "Quantity", "The amount that is to be dispensed for one fill.", 0, 1, quantity); case -1910182789: /*expectedSupplyDuration*/ return new Property("expectedSupplyDuration", "Duration", "Identifies the period time over which the supplied product is expected to be used, or the length of time the dispense is expected to last.", 0, 1, expectedSupplyDuration); case 241511093: /*dispenser*/ return new Property("dispenser", "Reference(Organization)", "Indicates the intended performing Organization that will dispense the medication as specified by the prescriber.", 0, 1, dispenser); case 2073630361: /*dispenserInstruction*/ return new Property("dispenserInstruction", "Annotation", "Provides additional information to the dispenser, for example, counselling to be provided to the patient.", 0, java.lang.Integer.MAX_VALUE, dispenserInstruction); case 390821217: /*doseAdministrationAid*/ return new Property("doseAdministrationAid", "CodeableConcept", "Provides information about the type of adherence packaging to be supplied for the medication dispense.", 0, 1, doseAdministrationAid); default: return super.getNamedProperty(_hash, _name, _checkValid); } } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case 1232961255: /*initialFill*/ return this.initialFill == null ? new Base[0] : new Base[] {this.initialFill}; // MedicationRequestDispenseRequestInitialFillComponent case 757112130: /*dispenseInterval*/ return this.dispenseInterval == null ? new Base[0] : new Base[] {this.dispenseInterval}; // Duration case -1434195053: /*validityPeriod*/ return this.validityPeriod == null ? new Base[0] : new Base[] {this.validityPeriod}; // Period case -239736976: /*numberOfRepeatsAllowed*/ return this.numberOfRepeatsAllowed == null ? new Base[0] : new Base[] {this.numberOfRepeatsAllowed}; // UnsignedIntType case -1285004149: /*quantity*/ return this.quantity == null ? new Base[0] : new Base[] {this.quantity}; // Quantity case -1910182789: /*expectedSupplyDuration*/ return this.expectedSupplyDuration == null ? new Base[0] : new Base[] {this.expectedSupplyDuration}; // Duration case 241511093: /*dispenser*/ return this.dispenser == null ? new Base[0] : new Base[] {this.dispenser}; // Reference case 2073630361: /*dispenserInstruction*/ return this.dispenserInstruction == null ? new Base[0] : this.dispenserInstruction.toArray(new Base[this.dispenserInstruction.size()]); // Annotation case 390821217: /*doseAdministrationAid*/ return this.doseAdministrationAid == null ? new Base[0] : new Base[] {this.doseAdministrationAid}; // CodeableConcept default: return super.getProperty(hash, name, checkValid); } } @Override public Base setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case 1232961255: // initialFill this.initialFill = (MedicationRequestDispenseRequestInitialFillComponent) value; // MedicationRequestDispenseRequestInitialFillComponent return value; case 757112130: // dispenseInterval this.dispenseInterval = TypeConvertor.castToDuration(value); // Duration return value; case -1434195053: // validityPeriod this.validityPeriod = TypeConvertor.castToPeriod(value); // Period return value; case -239736976: // numberOfRepeatsAllowed this.numberOfRepeatsAllowed = TypeConvertor.castToUnsignedInt(value); // UnsignedIntType return value; case -1285004149: // quantity this.quantity = TypeConvertor.castToQuantity(value); // Quantity return value; case -1910182789: // expectedSupplyDuration this.expectedSupplyDuration = TypeConvertor.castToDuration(value); // Duration return value; case 241511093: // dispenser this.dispenser = TypeConvertor.castToReference(value); // Reference return value; case 2073630361: // dispenserInstruction this.getDispenserInstruction().add(TypeConvertor.castToAnnotation(value)); // Annotation return value; case 390821217: // doseAdministrationAid this.doseAdministrationAid = TypeConvertor.castToCodeableConcept(value); // CodeableConcept return value; default: return super.setProperty(hash, name, value); } } @Override public Base setProperty(String name, Base value) throws FHIRException { if (name.equals("initialFill")) { this.initialFill = (MedicationRequestDispenseRequestInitialFillComponent) value; // MedicationRequestDispenseRequestInitialFillComponent } else if (name.equals("dispenseInterval")) { this.dispenseInterval = TypeConvertor.castToDuration(value); // Duration } else if (name.equals("validityPeriod")) { this.validityPeriod = TypeConvertor.castToPeriod(value); // Period } else if (name.equals("numberOfRepeatsAllowed")) { this.numberOfRepeatsAllowed = TypeConvertor.castToUnsignedInt(value); // UnsignedIntType } else if (name.equals("quantity")) { this.quantity = TypeConvertor.castToQuantity(value); // Quantity } else if (name.equals("expectedSupplyDuration")) { this.expectedSupplyDuration = TypeConvertor.castToDuration(value); // Duration } else if (name.equals("dispenser")) { this.dispenser = TypeConvertor.castToReference(value); // Reference } else if (name.equals("dispenserInstruction")) { this.getDispenserInstruction().add(TypeConvertor.castToAnnotation(value)); } else if (name.equals("doseAdministrationAid")) { this.doseAdministrationAid = TypeConvertor.castToCodeableConcept(value); // CodeableConcept } else return super.setProperty(name, value); return value; } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case 1232961255: return getInitialFill(); case 757112130: return getDispenseInterval(); case -1434195053: return getValidityPeriod(); case -239736976: return getNumberOfRepeatsAllowedElement(); case -1285004149: return getQuantity(); case -1910182789: return getExpectedSupplyDuration(); case 241511093: return getDispenser(); case 2073630361: return addDispenserInstruction(); case 390821217: return getDoseAdministrationAid(); default: return super.makeProperty(hash, name); } } @Override public String[] getTypesForProperty(int hash, String name) throws FHIRException { switch (hash) { case 1232961255: /*initialFill*/ return new String[] {}; case 757112130: /*dispenseInterval*/ return new String[] {"Duration"}; case -1434195053: /*validityPeriod*/ return new String[] {"Period"}; case -239736976: /*numberOfRepeatsAllowed*/ return new String[] {"unsignedInt"}; case -1285004149: /*quantity*/ return new String[] {"Quantity"}; case -1910182789: /*expectedSupplyDuration*/ return new String[] {"Duration"}; case 241511093: /*dispenser*/ return new String[] {"Reference"}; case 2073630361: /*dispenserInstruction*/ return new String[] {"Annotation"}; case 390821217: /*doseAdministrationAid*/ return new String[] {"CodeableConcept"}; default: return super.getTypesForProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("initialFill")) { this.initialFill = new MedicationRequestDispenseRequestInitialFillComponent(); return this.initialFill; } else if (name.equals("dispenseInterval")) { this.dispenseInterval = new Duration(); return this.dispenseInterval; } else if (name.equals("validityPeriod")) { this.validityPeriod = new Period(); return this.validityPeriod; } else if (name.equals("numberOfRepeatsAllowed")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.dispenseRequest.numberOfRepeatsAllowed"); } else if (name.equals("quantity")) { this.quantity = new Quantity(); return this.quantity; } else if (name.equals("expectedSupplyDuration")) { this.expectedSupplyDuration = new Duration(); return this.expectedSupplyDuration; } else if (name.equals("dispenser")) { this.dispenser = new Reference(); return this.dispenser; } else if (name.equals("dispenserInstruction")) { return addDispenserInstruction(); } else if (name.equals("doseAdministrationAid")) { this.doseAdministrationAid = new CodeableConcept(); return this.doseAdministrationAid; } else return super.addChild(name); } public MedicationRequestDispenseRequestComponent copy() { MedicationRequestDispenseRequestComponent dst = new MedicationRequestDispenseRequestComponent(); copyValues(dst); return dst; } public void copyValues(MedicationRequestDispenseRequestComponent dst) { super.copyValues(dst); dst.initialFill = initialFill == null ? null : initialFill.copy(); dst.dispenseInterval = dispenseInterval == null ? null : dispenseInterval.copy(); dst.validityPeriod = validityPeriod == null ? null : validityPeriod.copy(); dst.numberOfRepeatsAllowed = numberOfRepeatsAllowed == null ? null : numberOfRepeatsAllowed.copy(); dst.quantity = quantity == null ? null : quantity.copy(); dst.expectedSupplyDuration = expectedSupplyDuration == null ? null : expectedSupplyDuration.copy(); dst.dispenser = dispenser == null ? null : dispenser.copy(); if (dispenserInstruction != null) { dst.dispenserInstruction = new ArrayList<Annotation>(); for (Annotation i : dispenserInstruction) dst.dispenserInstruction.add(i.copy()); }; dst.doseAdministrationAid = doseAdministrationAid == null ? null : doseAdministrationAid.copy(); } @Override public boolean equalsDeep(Base other_) { if (!super.equalsDeep(other_)) return false; if (!(other_ instanceof MedicationRequestDispenseRequestComponent)) return false; MedicationRequestDispenseRequestComponent o = (MedicationRequestDispenseRequestComponent) other_; return compareDeep(initialFill, o.initialFill, true) && compareDeep(dispenseInterval, o.dispenseInterval, true) && compareDeep(validityPeriod, o.validityPeriod, true) && compareDeep(numberOfRepeatsAllowed, o.numberOfRepeatsAllowed, true) && compareDeep(quantity, o.quantity, true) && compareDeep(expectedSupplyDuration, o.expectedSupplyDuration, true) && compareDeep(dispenser, o.dispenser, true) && compareDeep(dispenserInstruction, o.dispenserInstruction, true) && compareDeep(doseAdministrationAid, o.doseAdministrationAid, true); } @Override public boolean equalsShallow(Base other_) { if (!super.equalsShallow(other_)) return false; if (!(other_ instanceof MedicationRequestDispenseRequestComponent)) return false; MedicationRequestDispenseRequestComponent o = (MedicationRequestDispenseRequestComponent) other_; return compareValues(numberOfRepeatsAllowed, o.numberOfRepeatsAllowed, true); } public boolean isEmpty() { return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(initialFill, dispenseInterval , validityPeriod, numberOfRepeatsAllowed, quantity, expectedSupplyDuration, dispenser , dispenserInstruction, doseAdministrationAid); } public String fhirType() { return "MedicationRequest.dispenseRequest"; } } @Block() public static class MedicationRequestDispenseRequestInitialFillComponent extends BackboneElement implements IBaseBackboneElement { /** * The amount or quantity to provide as part of the first dispense. */ @Child(name = "quantity", type = {Quantity.class}, order=1, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="First fill quantity", formalDefinition="The amount or quantity to provide as part of the first dispense." ) protected Quantity quantity; /** * The length of time that the first dispense is expected to last. */ @Child(name = "duration", type = {Duration.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="First fill duration", formalDefinition="The length of time that the first dispense is expected to last." ) protected Duration duration; private static final long serialVersionUID = 1223227956L; /** * Constructor */ public MedicationRequestDispenseRequestInitialFillComponent() { super(); } /** * @return {@link #quantity} (The amount or quantity to provide as part of the first dispense.) */ public Quantity getQuantity() { if (this.quantity == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestInitialFillComponent.quantity"); else if (Configuration.doAutoCreate()) this.quantity = new Quantity(); // cc return this.quantity; } public boolean hasQuantity() { return this.quantity != null && !this.quantity.isEmpty(); } /** * @param value {@link #quantity} (The amount or quantity to provide as part of the first dispense.) */ public MedicationRequestDispenseRequestInitialFillComponent setQuantity(Quantity value) { this.quantity = value; return this; } /** * @return {@link #duration} (The length of time that the first dispense is expected to last.) */ public Duration getDuration() { if (this.duration == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestDispenseRequestInitialFillComponent.duration"); else if (Configuration.doAutoCreate()) this.duration = new Duration(); // cc return this.duration; } public boolean hasDuration() { return this.duration != null && !this.duration.isEmpty(); } /** * @param value {@link #duration} (The length of time that the first dispense is expected to last.) */ public MedicationRequestDispenseRequestInitialFillComponent setDuration(Duration value) { this.duration = value; return this; } protected void listChildren(List<Property> children) { super.listChildren(children); children.add(new Property("quantity", "Quantity", "The amount or quantity to provide as part of the first dispense.", 0, 1, quantity)); children.add(new Property("duration", "Duration", "The length of time that the first dispense is expected to last.", 0, 1, duration)); } @Override public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException { switch (_hash) { case -1285004149: /*quantity*/ return new Property("quantity", "Quantity", "The amount or quantity to provide as part of the first dispense.", 0, 1, quantity); case -1992012396: /*duration*/ return new Property("duration", "Duration", "The length of time that the first dispense is expected to last.", 0, 1, duration); default: return super.getNamedProperty(_hash, _name, _checkValid); } } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -1285004149: /*quantity*/ return this.quantity == null ? new Base[0] : new Base[] {this.quantity}; // Quantity case -1992012396: /*duration*/ return this.duration == null ? new Base[0] : new Base[] {this.duration}; // Duration default: return super.getProperty(hash, name, checkValid); } } @Override public Base setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -1285004149: // quantity this.quantity = TypeConvertor.castToQuantity(value); // Quantity return value; case -1992012396: // duration this.duration = TypeConvertor.castToDuration(value); // Duration return value; default: return super.setProperty(hash, name, value); } } @Override public Base setProperty(String name, Base value) throws FHIRException { if (name.equals("quantity")) { this.quantity = TypeConvertor.castToQuantity(value); // Quantity } else if (name.equals("duration")) { this.duration = TypeConvertor.castToDuration(value); // Duration } else return super.setProperty(name, value); return value; } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -1285004149: return getQuantity(); case -1992012396: return getDuration(); default: return super.makeProperty(hash, name); } } @Override public String[] getTypesForProperty(int hash, String name) throws FHIRException { switch (hash) { case -1285004149: /*quantity*/ return new String[] {"Quantity"}; case -1992012396: /*duration*/ return new String[] {"Duration"}; default: return super.getTypesForProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("quantity")) { this.quantity = new Quantity(); return this.quantity; } else if (name.equals("duration")) { this.duration = new Duration(); return this.duration; } else return super.addChild(name); } public MedicationRequestDispenseRequestInitialFillComponent copy() { MedicationRequestDispenseRequestInitialFillComponent dst = new MedicationRequestDispenseRequestInitialFillComponent(); copyValues(dst); return dst; } public void copyValues(MedicationRequestDispenseRequestInitialFillComponent dst) { super.copyValues(dst); dst.quantity = quantity == null ? null : quantity.copy(); dst.duration = duration == null ? null : duration.copy(); } @Override public boolean equalsDeep(Base other_) { if (!super.equalsDeep(other_)) return false; if (!(other_ instanceof MedicationRequestDispenseRequestInitialFillComponent)) return false; MedicationRequestDispenseRequestInitialFillComponent o = (MedicationRequestDispenseRequestInitialFillComponent) other_; return compareDeep(quantity, o.quantity, true) && compareDeep(duration, o.duration, true); } @Override public boolean equalsShallow(Base other_) { if (!super.equalsShallow(other_)) return false; if (!(other_ instanceof MedicationRequestDispenseRequestInitialFillComponent)) return false; MedicationRequestDispenseRequestInitialFillComponent o = (MedicationRequestDispenseRequestInitialFillComponent) other_; return true; } public boolean isEmpty() { return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(quantity, duration); } public String fhirType() { return "MedicationRequest.dispenseRequest.initialFill"; } } @Block() public static class MedicationRequestSubstitutionComponent extends BackboneElement implements IBaseBackboneElement { /** * True if the prescriber allows a different drug to be dispensed from what was prescribed. */ @Child(name = "allowed", type = {BooleanType.class, CodeableConcept.class}, order=1, min=1, max=1, modifier=false, summary=false) @Description(shortDefinition="Whether substitution is allowed or not", formalDefinition="True if the prescriber allows a different drug to be dispensed from what was prescribed." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://terminology.hl7.org/ValueSet/v3-ActSubstanceAdminSubstitutionCode") protected DataType allowed; /** * Indicates the reason for the substitution, or why substitution must or must not be performed. */ @Child(name = "reason", type = {CodeableConcept.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Why should (not) substitution be made", formalDefinition="Indicates the reason for the substitution, or why substitution must or must not be performed." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://terminology.hl7.org/ValueSet/v3-SubstanceAdminSubstitutionReason") protected CodeableConcept reason; private static final long serialVersionUID = -855005751L; /** * Constructor */ public MedicationRequestSubstitutionComponent() { super(); } /** * Constructor */ public MedicationRequestSubstitutionComponent(DataType allowed) { super(); this.setAllowed(allowed); } /** * @return {@link #allowed} (True if the prescriber allows a different drug to be dispensed from what was prescribed.) */ public DataType getAllowed() { return this.allowed; } /** * @return {@link #allowed} (True if the prescriber allows a different drug to be dispensed from what was prescribed.) */ public BooleanType getAllowedBooleanType() throws FHIRException { if (this.allowed == null) this.allowed = new BooleanType(); if (!(this.allowed instanceof BooleanType)) throw new FHIRException("Type mismatch: the type BooleanType was expected, but "+this.allowed.getClass().getName()+" was encountered"); return (BooleanType) this.allowed; } public boolean hasAllowedBooleanType() { return this != null && this.allowed instanceof BooleanType; } /** * @return {@link #allowed} (True if the prescriber allows a different drug to be dispensed from what was prescribed.) */ public CodeableConcept getAllowedCodeableConcept() throws FHIRException { if (this.allowed == null) this.allowed = new CodeableConcept(); if (!(this.allowed instanceof CodeableConcept)) throw new FHIRException("Type mismatch: the type CodeableConcept was expected, but "+this.allowed.getClass().getName()+" was encountered"); return (CodeableConcept) this.allowed; } public boolean hasAllowedCodeableConcept() { return this != null && this.allowed instanceof CodeableConcept; } public boolean hasAllowed() { return this.allowed != null && !this.allowed.isEmpty(); } /** * @param value {@link #allowed} (True if the prescriber allows a different drug to be dispensed from what was prescribed.) */ public MedicationRequestSubstitutionComponent setAllowed(DataType value) { if (value != null && !(value instanceof BooleanType || value instanceof CodeableConcept)) throw new Error("Not the right type for MedicationRequest.substitution.allowed[x]: "+value.fhirType()); this.allowed = value; return this; } /** * @return {@link #reason} (Indicates the reason for the substitution, or why substitution must or must not be performed.) */ public CodeableConcept getReason() { if (this.reason == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequestSubstitutionComponent.reason"); else if (Configuration.doAutoCreate()) this.reason = new CodeableConcept(); // cc return this.reason; } public boolean hasReason() { return this.reason != null && !this.reason.isEmpty(); } /** * @param value {@link #reason} (Indicates the reason for the substitution, or why substitution must or must not be performed.) */ public MedicationRequestSubstitutionComponent setReason(CodeableConcept value) { this.reason = value; return this; } protected void listChildren(List<Property> children) { super.listChildren(children); children.add(new Property("allowed[x]", "boolean|CodeableConcept", "True if the prescriber allows a different drug to be dispensed from what was prescribed.", 0, 1, allowed)); children.add(new Property("reason", "CodeableConcept", "Indicates the reason for the substitution, or why substitution must or must not be performed.", 0, 1, reason)); } @Override public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException { switch (_hash) { case -1336663592: /*allowed[x]*/ return new Property("allowed[x]", "boolean|CodeableConcept", "True if the prescriber allows a different drug to be dispensed from what was prescribed.", 0, 1, allowed); case -911343192: /*allowed*/ return new Property("allowed[x]", "boolean|CodeableConcept", "True if the prescriber allows a different drug to be dispensed from what was prescribed.", 0, 1, allowed); case 177755488: /*allowedBoolean*/ return new Property("allowed[x]", "boolean", "True if the prescriber allows a different drug to be dispensed from what was prescribed.", 0, 1, allowed); case 963125465: /*allowedCodeableConcept*/ return new Property("allowed[x]", "CodeableConcept", "True if the prescriber allows a different drug to be dispensed from what was prescribed.", 0, 1, allowed); case -934964668: /*reason*/ return new Property("reason", "CodeableConcept", "Indicates the reason for the substitution, or why substitution must or must not be performed.", 0, 1, reason); default: return super.getNamedProperty(_hash, _name, _checkValid); } } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -911343192: /*allowed*/ return this.allowed == null ? new Base[0] : new Base[] {this.allowed}; // DataType case -934964668: /*reason*/ return this.reason == null ? new Base[0] : new Base[] {this.reason}; // CodeableConcept default: return super.getProperty(hash, name, checkValid); } } @Override public Base setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -911343192: // allowed this.allowed = TypeConvertor.castToType(value); // DataType return value; case -934964668: // reason this.reason = TypeConvertor.castToCodeableConcept(value); // CodeableConcept return value; default: return super.setProperty(hash, name, value); } } @Override public Base setProperty(String name, Base value) throws FHIRException { if (name.equals("allowed[x]")) { this.allowed = TypeConvertor.castToType(value); // DataType } else if (name.equals("reason")) { this.reason = TypeConvertor.castToCodeableConcept(value); // CodeableConcept } else return super.setProperty(name, value); return value; } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -1336663592: return getAllowed(); case -911343192: return getAllowed(); case -934964668: return getReason(); default: return super.makeProperty(hash, name); } } @Override public String[] getTypesForProperty(int hash, String name) throws FHIRException { switch (hash) { case -911343192: /*allowed*/ return new String[] {"boolean", "CodeableConcept"}; case -934964668: /*reason*/ return new String[] {"CodeableConcept"}; default: return super.getTypesForProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("allowedBoolean")) { this.allowed = new BooleanType(); return this.allowed; } else if (name.equals("allowedCodeableConcept")) { this.allowed = new CodeableConcept(); return this.allowed; } else if (name.equals("reason")) { this.reason = new CodeableConcept(); return this.reason; } else return super.addChild(name); } public MedicationRequestSubstitutionComponent copy() { MedicationRequestSubstitutionComponent dst = new MedicationRequestSubstitutionComponent(); copyValues(dst); return dst; } public void copyValues(MedicationRequestSubstitutionComponent dst) { super.copyValues(dst); dst.allowed = allowed == null ? null : allowed.copy(); dst.reason = reason == null ? null : reason.copy(); } @Override public boolean equalsDeep(Base other_) { if (!super.equalsDeep(other_)) return false; if (!(other_ instanceof MedicationRequestSubstitutionComponent)) return false; MedicationRequestSubstitutionComponent o = (MedicationRequestSubstitutionComponent) other_; return compareDeep(allowed, o.allowed, true) && compareDeep(reason, o.reason, true); } @Override public boolean equalsShallow(Base other_) { if (!super.equalsShallow(other_)) return false; if (!(other_ instanceof MedicationRequestSubstitutionComponent)) return false; MedicationRequestSubstitutionComponent o = (MedicationRequestSubstitutionComponent) other_; return true; } public boolean isEmpty() { return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(allowed, reason); } public String fhirType() { return "MedicationRequest.substitution"; } } /** * Identifiers associated with this medication request that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server. */ @Child(name = "identifier", type = {Identifier.class}, order=0, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="External ids for this request", formalDefinition="Identifiers associated with this medication request that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server." ) protected List<Identifier> identifier; /** * A plan or request that is fulfilled in whole or in part by this medication request. */ @Child(name = "basedOn", type = {CarePlan.class, MedicationRequest.class, ServiceRequest.class, ImmunizationRecommendation.class}, order=1, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=true) @Description(shortDefinition="What request fulfills", formalDefinition="A plan or request that is fulfilled in whole or in part by this medication request." ) protected List<Reference> basedOn; /** * A link to a resource representing an earlier order related order or prescription. */ @Child(name = "priorPrescription", type = {MedicationRequest.class}, order=2, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="An order/prescription that is being replaced", formalDefinition="A link to a resource representing an earlier order related order or prescription." ) protected Reference priorPrescription; /** * A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription. */ @Child(name = "groupIdentifier", type = {Identifier.class}, order=3, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Composite request this is part of", formalDefinition="A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription." ) protected Identifier groupIdentifier; /** * A code specifying the current state of the order. Generally, this will be active or completed state. */ @Child(name = "status", type = {CodeType.class}, order=4, min=1, max=1, modifier=true, summary=true) @Description(shortDefinition="active | on-hold | ended | stopped | completed | cancelled | entered-in-error | draft | unknown", formalDefinition="A code specifying the current state of the order. Generally, this will be active or completed state." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medicationrequest-status") protected Enumeration<MedicationrequestStatus> status; /** * Captures the reason for the current state of the MedicationRequest. */ @Child(name = "statusReason", type = {CodeableConcept.class}, order=5, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Reason for current status", formalDefinition="Captures the reason for the current state of the MedicationRequest." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medicationrequest-status-reason") protected CodeableConcept statusReason; /** * The date (and perhaps time) when the status was changed. */ @Child(name = "statusChanged", type = {DateTimeType.class}, order=6, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="When the status was changed", formalDefinition="The date (and perhaps time) when the status was changed." ) protected DateTimeType statusChanged; /** * Whether the request is a proposal, plan, or an original order. */ @Child(name = "intent", type = {CodeType.class}, order=7, min=1, max=1, modifier=true, summary=true) @Description(shortDefinition="proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option", formalDefinition="Whether the request is a proposal, plan, or an original order." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medicationrequest-intent") protected Enumeration<MedicationRequestIntent> intent; /** * Indicates the grouping or category of medication request (for example, drug classification like ATC, where meds would be administered, legal category of the medication.). */ @Child(name = "category", type = {CodeableConcept.class}, order=8, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Grouping or category of medication request", formalDefinition="Indicates the grouping or category of medication request (for example, drug classification like ATC, where meds would be administered, legal category of the medication.)." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medicationrequest-admin-location") protected List<CodeableConcept> category; /** * Indicates how quickly the Medication Request should be addressed with respect to other requests. */ @Child(name = "priority", type = {CodeType.class}, order=9, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="routine | urgent | asap | stat", formalDefinition="Indicates how quickly the Medication Request should be addressed with respect to other requests." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/request-priority") protected Enumeration<RequestPriority> priority; /** * If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication. */ @Child(name = "doNotPerform", type = {BooleanType.class}, order=10, min=0, max=1, modifier=true, summary=true) @Description(shortDefinition="True if patient is to stop taking or not to start taking the medication", formalDefinition="If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication." ) protected BooleanType doNotPerform; /** * Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications. */ @Child(name = "medication", type = {CodeableReference.class}, order=11, min=1, max=1, modifier=false, summary=true) @Description(shortDefinition="Medication to be taken", formalDefinition="Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medication-codes") protected CodeableReference medication; /** * A link to a resource representing the person or set of individuals to whom the medication will be given. */ @Child(name = "subject", type = {Patient.class, Group.class}, order=12, min=1, max=1, modifier=false, summary=true) @Description(shortDefinition="Who or group medication request is for", formalDefinition="A link to a resource representing the person or set of individuals to whom the medication will be given." ) protected Reference subject; /** * The person or organization who provided the information about this request, if the source is someone other than the requestor. This is often used when the MedicationRequest is reported by another person. */ @Child(name = "informationSource", type = {Patient.class, Practitioner.class, PractitionerRole.class, RelatedPerson.class, Organization.class}, order=13, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="The person or organization who provided the information about this request, if the source is someone other than the requestor", formalDefinition="The person or organization who provided the information about this request, if the source is someone other than the requestor. This is often used when the MedicationRequest is reported by another person." ) protected List<Reference> informationSource; /** * The Encounter during which this [x] was created or to which the creation of this record is tightly associated. */ @Child(name = "encounter", type = {Encounter.class}, order=14, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Encounter created as part of encounter/admission/stay", formalDefinition="The Encounter during which this [x] was created or to which the creation of this record is tightly associated." ) protected Reference encounter; /** * Information to support fulfilling (i.e. dispensing or administering) of the medication, for example, patient height and weight, a MedicationUsage for the patient). */ @Child(name = "supportingInformation", type = {Reference.class}, order=15, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Information to support fulfilling of the medication", formalDefinition="Information to support fulfilling (i.e. dispensing or administering) of the medication, for example, patient height and weight, a MedicationUsage for the patient)." ) protected List<Reference> supportingInformation; /** * The date (and perhaps time) when the prescription was initially written or authored on. */ @Child(name = "authoredOn", type = {DateTimeType.class}, order=16, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="When request was initially authored", formalDefinition="The date (and perhaps time) when the prescription was initially written or authored on." ) protected DateTimeType authoredOn; /** * The individual, organization, or device that initiated the request and has responsibility for its activation. */ @Child(name = "requester", type = {Practitioner.class, PractitionerRole.class, Organization.class, Patient.class, RelatedPerson.class, Device.class}, order=17, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Who/What requested the Request", formalDefinition="The individual, organization, or device that initiated the request and has responsibility for its activation." ) protected Reference requester; /** * Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report. */ @Child(name = "reported", type = {BooleanType.class}, order=18, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Reported rather than primary record", formalDefinition="Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report." ) protected BooleanType reported; /** * Indicates the type of performer of the administration of the medication. */ @Child(name = "performerType", type = {CodeableConcept.class}, order=19, min=0, max=1, modifier=false, summary=true) @Description(shortDefinition="Desired kind of performer of the medication administration", formalDefinition="Indicates the type of performer of the administration of the medication." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medication-intended-performer-role") protected CodeableConcept performerType; /** * The specified desired performer of the medication treatment (e.g. the performer of the medication administration). For devices, this is the device that is intended to perform the administration of the medication. An IV Pump would be an example of a device that is performing the administration. Both the IV Pump and the practitioner that set the rate or bolus on the pump can be listed as performers. */ @Child(name = "performer", type = {Practitioner.class, PractitionerRole.class, Organization.class, Patient.class, DeviceDefinition.class, RelatedPerson.class, CareTeam.class, HealthcareService.class}, order=20, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Intended performer of administration", formalDefinition="The specified desired performer of the medication treatment (e.g. the performer of the medication administration). For devices, this is the device that is intended to perform the administration of the medication. An IV Pump would be an example of a device that is performing the administration. Both the IV Pump and the practitioner that set the rate or bolus on the pump can be listed as performers." ) protected List<Reference> performer; /** * The intended type of device that is to be used for the administration of the medication (for example, PCA Pump). */ @Child(name = "device", type = {CodeableReference.class}, order=21, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Intended type of device for the administration", formalDefinition="The intended type of device that is to be used for the administration of the medication (for example, PCA Pump)." ) protected CodeableReference device; /** * The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order. */ @Child(name = "recorder", type = {Practitioner.class, PractitionerRole.class}, order=22, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Person who entered the request", formalDefinition="The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order." ) protected Reference recorder; /** * The reason or the indication for ordering or not ordering the medication. */ @Child(name = "reason", type = {CodeableReference.class}, order=23, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Reason or indication for ordering or not ordering the medication", formalDefinition="The reason or the indication for ordering or not ordering the medication." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/condition-code") protected List<CodeableReference> reason; /** * The description of the overall pattern of the administration of the medication to the patient. */ @Child(name = "courseOfTherapyType", type = {CodeableConcept.class}, order=24, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Overall pattern of medication administration", formalDefinition="The description of the overall pattern of the administration of the medication to the patient." ) @ca.uhn.fhir.model.api.annotation.Binding(valueSet="http://hl7.org/fhir/ValueSet/medicationrequest-course-of-therapy") protected CodeableConcept courseOfTherapyType; /** * Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service. */ @Child(name = "insurance", type = {Coverage.class, ClaimResponse.class}, order=25, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Associated insurance coverage", formalDefinition="Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service." ) protected List<Reference> insurance; /** * Extra information about the prescription that could not be conveyed by the other attributes. */ @Child(name = "note", type = {Annotation.class}, order=26, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="Information about the prescription", formalDefinition="Extra information about the prescription that could not be conveyed by the other attributes." ) protected List<Annotation> note; /** * Indicates how the medication is to be used by the patient. */ @Child(name = "dose", type = {}, order=27, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="How the medication should be taken", formalDefinition="Indicates how the medication is to be used by the patient." ) protected MedicationRequestDoseComponent dose; /** * Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department. */ @Child(name = "dispenseRequest", type = {}, order=28, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Medication supply authorization", formalDefinition="Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department." ) protected MedicationRequestDispenseRequestComponent dispenseRequest; /** * Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done. */ @Child(name = "substitution", type = {}, order=29, min=0, max=1, modifier=false, summary=false) @Description(shortDefinition="Any restrictions on medication substitution", formalDefinition="Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done." ) protected MedicationRequestSubstitutionComponent substitution; /** * Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource. */ @Child(name = "eventHistory", type = {Provenance.class}, order=30, min=0, max=Child.MAX_UNLIMITED, modifier=false, summary=false) @Description(shortDefinition="A list of events of interest in the lifecycle", formalDefinition="Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource." ) protected List<Reference> eventHistory; private static final long serialVersionUID = -1151829612L; /** * Constructor */ public MedicationRequest() { super(); } /** * Constructor */ public MedicationRequest(MedicationrequestStatus status, MedicationRequestIntent intent, CodeableReference medication, Reference subject) { super(); this.setStatus(status); this.setIntent(intent); this.setMedication(medication); this.setSubject(subject); } /** * @return {@link #identifier} (Identifiers associated with this medication request that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.) */ public List<Identifier> getIdentifier() { if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); return this.identifier; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setIdentifier(List<Identifier> theIdentifier) { this.identifier = theIdentifier; return this; } public boolean hasIdentifier() { if (this.identifier == null) return false; for (Identifier item : this.identifier) if (!item.isEmpty()) return true; return false; } public Identifier addIdentifier() { //3 Identifier t = new Identifier(); if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); this.identifier.add(t); return t; } public MedicationRequest addIdentifier(Identifier t) { //3 if (t == null) return this; if (this.identifier == null) this.identifier = new ArrayList<Identifier>(); this.identifier.add(t); return this; } /** * @return The first repetition of repeating field {@link #identifier}, creating it if it does not already exist {3} */ public Identifier getIdentifierFirstRep() { if (getIdentifier().isEmpty()) { addIdentifier(); } return getIdentifier().get(0); } /** * @return {@link #basedOn} (A plan or request that is fulfilled in whole or in part by this medication request.) */ public List<Reference> getBasedOn() { if (this.basedOn == null) this.basedOn = new ArrayList<Reference>(); return this.basedOn; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setBasedOn(List<Reference> theBasedOn) { this.basedOn = theBasedOn; return this; } public boolean hasBasedOn() { if (this.basedOn == null) return false; for (Reference item : this.basedOn) if (!item.isEmpty()) return true; return false; } public Reference addBasedOn() { //3 Reference t = new Reference(); if (this.basedOn == null) this.basedOn = new ArrayList<Reference>(); this.basedOn.add(t); return t; } public MedicationRequest addBasedOn(Reference t) { //3 if (t == null) return this; if (this.basedOn == null) this.basedOn = new ArrayList<Reference>(); this.basedOn.add(t); return this; } /** * @return The first repetition of repeating field {@link #basedOn}, creating it if it does not already exist {3} */ public Reference getBasedOnFirstRep() { if (getBasedOn().isEmpty()) { addBasedOn(); } return getBasedOn().get(0); } /** * @return {@link #priorPrescription} (A link to a resource representing an earlier order related order or prescription.) */ public Reference getPriorPrescription() { if (this.priorPrescription == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.priorPrescription"); else if (Configuration.doAutoCreate()) this.priorPrescription = new Reference(); // cc return this.priorPrescription; } public boolean hasPriorPrescription() { return this.priorPrescription != null && !this.priorPrescription.isEmpty(); } /** * @param value {@link #priorPrescription} (A link to a resource representing an earlier order related order or prescription.) */ public MedicationRequest setPriorPrescription(Reference value) { this.priorPrescription = value; return this; } /** * @return {@link #groupIdentifier} (A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription.) */ public Identifier getGroupIdentifier() { if (this.groupIdentifier == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.groupIdentifier"); else if (Configuration.doAutoCreate()) this.groupIdentifier = new Identifier(); // cc return this.groupIdentifier; } public boolean hasGroupIdentifier() { return this.groupIdentifier != null && !this.groupIdentifier.isEmpty(); } /** * @param value {@link #groupIdentifier} (A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription.) */ public MedicationRequest setGroupIdentifier(Identifier value) { this.groupIdentifier = value; return this; } /** * @return {@link #status} (A code specifying the current state of the order. Generally, this will be active or completed state.). This is the underlying object with id, value and extensions. The accessor "getStatus" gives direct access to the value */ public Enumeration<MedicationrequestStatus> getStatusElement() { if (this.status == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.status"); else if (Configuration.doAutoCreate()) this.status = new Enumeration<MedicationrequestStatus>(new MedicationrequestStatusEnumFactory()); // bb return this.status; } public boolean hasStatusElement() { return this.status != null && !this.status.isEmpty(); } public boolean hasStatus() { return this.status != null && !this.status.isEmpty(); } /** * @param value {@link #status} (A code specifying the current state of the order. Generally, this will be active or completed state.). This is the underlying object with id, value and extensions. The accessor "getStatus" gives direct access to the value */ public MedicationRequest setStatusElement(Enumeration<MedicationrequestStatus> value) { this.status = value; return this; } /** * @return A code specifying the current state of the order. Generally, this will be active or completed state. */ public MedicationrequestStatus getStatus() { return this.status == null ? null : this.status.getValue(); } /** * @param value A code specifying the current state of the order. Generally, this will be active or completed state. */ public MedicationRequest setStatus(MedicationrequestStatus value) { if (this.status == null) this.status = new Enumeration<MedicationrequestStatus>(new MedicationrequestStatusEnumFactory()); this.status.setValue(value); return this; } /** * @return {@link #statusReason} (Captures the reason for the current state of the MedicationRequest.) */ public CodeableConcept getStatusReason() { if (this.statusReason == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.statusReason"); else if (Configuration.doAutoCreate()) this.statusReason = new CodeableConcept(); // cc return this.statusReason; } public boolean hasStatusReason() { return this.statusReason != null && !this.statusReason.isEmpty(); } /** * @param value {@link #statusReason} (Captures the reason for the current state of the MedicationRequest.) */ public MedicationRequest setStatusReason(CodeableConcept value) { this.statusReason = value; return this; } /** * @return {@link #statusChanged} (The date (and perhaps time) when the status was changed.). This is the underlying object with id, value and extensions. The accessor "getStatusChanged" gives direct access to the value */ public DateTimeType getStatusChangedElement() { if (this.statusChanged == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.statusChanged"); else if (Configuration.doAutoCreate()) this.statusChanged = new DateTimeType(); // bb return this.statusChanged; } public boolean hasStatusChangedElement() { return this.statusChanged != null && !this.statusChanged.isEmpty(); } public boolean hasStatusChanged() { return this.statusChanged != null && !this.statusChanged.isEmpty(); } /** * @param value {@link #statusChanged} (The date (and perhaps time) when the status was changed.). This is the underlying object with id, value and extensions. The accessor "getStatusChanged" gives direct access to the value */ public MedicationRequest setStatusChangedElement(DateTimeType value) { this.statusChanged = value; return this; } /** * @return The date (and perhaps time) when the status was changed. */ public Date getStatusChanged() { return this.statusChanged == null ? null : this.statusChanged.getValue(); } /** * @param value The date (and perhaps time) when the status was changed. */ public MedicationRequest setStatusChanged(Date value) { if (value == null) this.statusChanged = null; else { if (this.statusChanged == null) this.statusChanged = new DateTimeType(); this.statusChanged.setValue(value); } return this; } /** * @return {@link #intent} (Whether the request is a proposal, plan, or an original order.). This is the underlying object with id, value and extensions. The accessor "getIntent" gives direct access to the value */ public Enumeration<MedicationRequestIntent> getIntentElement() { if (this.intent == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.intent"); else if (Configuration.doAutoCreate()) this.intent = new Enumeration<MedicationRequestIntent>(new MedicationRequestIntentEnumFactory()); // bb return this.intent; } public boolean hasIntentElement() { return this.intent != null && !this.intent.isEmpty(); } public boolean hasIntent() { return this.intent != null && !this.intent.isEmpty(); } /** * @param value {@link #intent} (Whether the request is a proposal, plan, or an original order.). This is the underlying object with id, value and extensions. The accessor "getIntent" gives direct access to the value */ public MedicationRequest setIntentElement(Enumeration<MedicationRequestIntent> value) { this.intent = value; return this; } /** * @return Whether the request is a proposal, plan, or an original order. */ public MedicationRequestIntent getIntent() { return this.intent == null ? null : this.intent.getValue(); } /** * @param value Whether the request is a proposal, plan, or an original order. */ public MedicationRequest setIntent(MedicationRequestIntent value) { if (this.intent == null) this.intent = new Enumeration<MedicationRequestIntent>(new MedicationRequestIntentEnumFactory()); this.intent.setValue(value); return this; } /** * @return {@link #category} (Indicates the grouping or category of medication request (for example, drug classification like ATC, where meds would be administered, legal category of the medication.).) */ public List<CodeableConcept> getCategory() { if (this.category == null) this.category = new ArrayList<CodeableConcept>(); return this.category; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setCategory(List<CodeableConcept> theCategory) { this.category = theCategory; return this; } public boolean hasCategory() { if (this.category == null) return false; for (CodeableConcept item : this.category) if (!item.isEmpty()) return true; return false; } public CodeableConcept addCategory() { //3 CodeableConcept t = new CodeableConcept(); if (this.category == null) this.category = new ArrayList<CodeableConcept>(); this.category.add(t); return t; } public MedicationRequest addCategory(CodeableConcept t) { //3 if (t == null) return this; if (this.category == null) this.category = new ArrayList<CodeableConcept>(); this.category.add(t); return this; } /** * @return The first repetition of repeating field {@link #category}, creating it if it does not already exist {3} */ public CodeableConcept getCategoryFirstRep() { if (getCategory().isEmpty()) { addCategory(); } return getCategory().get(0); } /** * @return {@link #priority} (Indicates how quickly the Medication Request should be addressed with respect to other requests.). This is the underlying object with id, value and extensions. The accessor "getPriority" gives direct access to the value */ public Enumeration<RequestPriority> getPriorityElement() { if (this.priority == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.priority"); else if (Configuration.doAutoCreate()) this.priority = new Enumeration<RequestPriority>(new RequestPriorityEnumFactory()); // bb return this.priority; } public boolean hasPriorityElement() { return this.priority != null && !this.priority.isEmpty(); } public boolean hasPriority() { return this.priority != null && !this.priority.isEmpty(); } /** * @param value {@link #priority} (Indicates how quickly the Medication Request should be addressed with respect to other requests.). This is the underlying object with id, value and extensions. The accessor "getPriority" gives direct access to the value */ public MedicationRequest setPriorityElement(Enumeration<RequestPriority> value) { this.priority = value; return this; } /** * @return Indicates how quickly the Medication Request should be addressed with respect to other requests. */ public RequestPriority getPriority() { return this.priority == null ? null : this.priority.getValue(); } /** * @param value Indicates how quickly the Medication Request should be addressed with respect to other requests. */ public MedicationRequest setPriority(RequestPriority value) { if (value == null) this.priority = null; else { if (this.priority == null) this.priority = new Enumeration<RequestPriority>(new RequestPriorityEnumFactory()); this.priority.setValue(value); } return this; } /** * @return {@link #doNotPerform} (If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication.). This is the underlying object with id, value and extensions. The accessor "getDoNotPerform" gives direct access to the value */ public BooleanType getDoNotPerformElement() { if (this.doNotPerform == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.doNotPerform"); else if (Configuration.doAutoCreate()) this.doNotPerform = new BooleanType(); // bb return this.doNotPerform; } public boolean hasDoNotPerformElement() { return this.doNotPerform != null && !this.doNotPerform.isEmpty(); } public boolean hasDoNotPerform() { return this.doNotPerform != null && !this.doNotPerform.isEmpty(); } /** * @param value {@link #doNotPerform} (If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication.). This is the underlying object with id, value and extensions. The accessor "getDoNotPerform" gives direct access to the value */ public MedicationRequest setDoNotPerformElement(BooleanType value) { this.doNotPerform = value; return this; } /** * @return If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication. */ public boolean getDoNotPerform() { return this.doNotPerform == null || this.doNotPerform.isEmpty() ? false : this.doNotPerform.getValue(); } /** * @param value If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication. */ public MedicationRequest setDoNotPerform(boolean value) { if (this.doNotPerform == null) this.doNotPerform = new BooleanType(); this.doNotPerform.setValue(value); return this; } /** * @return {@link #medication} (Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications.) */ public CodeableReference getMedication() { if (this.medication == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.medication"); else if (Configuration.doAutoCreate()) this.medication = new CodeableReference(); // cc return this.medication; } public boolean hasMedication() { return this.medication != null && !this.medication.isEmpty(); } /** * @param value {@link #medication} (Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications.) */ public MedicationRequest setMedication(CodeableReference value) { this.medication = value; return this; } /** * @return {@link #subject} (A link to a resource representing the person or set of individuals to whom the medication will be given.) */ public Reference getSubject() { if (this.subject == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.subject"); else if (Configuration.doAutoCreate()) this.subject = new Reference(); // cc return this.subject; } public boolean hasSubject() { return this.subject != null && !this.subject.isEmpty(); } /** * @param value {@link #subject} (A link to a resource representing the person or set of individuals to whom the medication will be given.) */ public MedicationRequest setSubject(Reference value) { this.subject = value; return this; } /** * @return {@link #informationSource} (The person or organization who provided the information about this request, if the source is someone other than the requestor. This is often used when the MedicationRequest is reported by another person.) */ public List<Reference> getInformationSource() { if (this.informationSource == null) this.informationSource = new ArrayList<Reference>(); return this.informationSource; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setInformationSource(List<Reference> theInformationSource) { this.informationSource = theInformationSource; return this; } public boolean hasInformationSource() { if (this.informationSource == null) return false; for (Reference item : this.informationSource) if (!item.isEmpty()) return true; return false; } public Reference addInformationSource() { //3 Reference t = new Reference(); if (this.informationSource == null) this.informationSource = new ArrayList<Reference>(); this.informationSource.add(t); return t; } public MedicationRequest addInformationSource(Reference t) { //3 if (t == null) return this; if (this.informationSource == null) this.informationSource = new ArrayList<Reference>(); this.informationSource.add(t); return this; } /** * @return The first repetition of repeating field {@link #informationSource}, creating it if it does not already exist {3} */ public Reference getInformationSourceFirstRep() { if (getInformationSource().isEmpty()) { addInformationSource(); } return getInformationSource().get(0); } /** * @return {@link #encounter} (The Encounter during which this [x] was created or to which the creation of this record is tightly associated.) */ public Reference getEncounter() { if (this.encounter == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.encounter"); else if (Configuration.doAutoCreate()) this.encounter = new Reference(); // cc return this.encounter; } public boolean hasEncounter() { return this.encounter != null && !this.encounter.isEmpty(); } /** * @param value {@link #encounter} (The Encounter during which this [x] was created or to which the creation of this record is tightly associated.) */ public MedicationRequest setEncounter(Reference value) { this.encounter = value; return this; } /** * @return {@link #supportingInformation} (Information to support fulfilling (i.e. dispensing or administering) of the medication, for example, patient height and weight, a MedicationUsage for the patient).) */ public List<Reference> getSupportingInformation() { if (this.supportingInformation == null) this.supportingInformation = new ArrayList<Reference>(); return this.supportingInformation; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setSupportingInformation(List<Reference> theSupportingInformation) { this.supportingInformation = theSupportingInformation; return this; } public boolean hasSupportingInformation() { if (this.supportingInformation == null) return false; for (Reference item : this.supportingInformation) if (!item.isEmpty()) return true; return false; } public Reference addSupportingInformation() { //3 Reference t = new Reference(); if (this.supportingInformation == null) this.supportingInformation = new ArrayList<Reference>(); this.supportingInformation.add(t); return t; } public MedicationRequest addSupportingInformation(Reference t) { //3 if (t == null) return this; if (this.supportingInformation == null) this.supportingInformation = new ArrayList<Reference>(); this.supportingInformation.add(t); return this; } /** * @return The first repetition of repeating field {@link #supportingInformation}, creating it if it does not already exist {3} */ public Reference getSupportingInformationFirstRep() { if (getSupportingInformation().isEmpty()) { addSupportingInformation(); } return getSupportingInformation().get(0); } /** * @return {@link #authoredOn} (The date (and perhaps time) when the prescription was initially written or authored on.). This is the underlying object with id, value and extensions. The accessor "getAuthoredOn" gives direct access to the value */ public DateTimeType getAuthoredOnElement() { if (this.authoredOn == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.authoredOn"); else if (Configuration.doAutoCreate()) this.authoredOn = new DateTimeType(); // bb return this.authoredOn; } public boolean hasAuthoredOnElement() { return this.authoredOn != null && !this.authoredOn.isEmpty(); } public boolean hasAuthoredOn() { return this.authoredOn != null && !this.authoredOn.isEmpty(); } /** * @param value {@link #authoredOn} (The date (and perhaps time) when the prescription was initially written or authored on.). This is the underlying object with id, value and extensions. The accessor "getAuthoredOn" gives direct access to the value */ public MedicationRequest setAuthoredOnElement(DateTimeType value) { this.authoredOn = value; return this; } /** * @return The date (and perhaps time) when the prescription was initially written or authored on. */ public Date getAuthoredOn() { return this.authoredOn == null ? null : this.authoredOn.getValue(); } /** * @param value The date (and perhaps time) when the prescription was initially written or authored on. */ public MedicationRequest setAuthoredOn(Date value) { if (value == null) this.authoredOn = null; else { if (this.authoredOn == null) this.authoredOn = new DateTimeType(); this.authoredOn.setValue(value); } return this; } /** * @return {@link #requester} (The individual, organization, or device that initiated the request and has responsibility for its activation.) */ public Reference getRequester() { if (this.requester == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.requester"); else if (Configuration.doAutoCreate()) this.requester = new Reference(); // cc return this.requester; } public boolean hasRequester() { return this.requester != null && !this.requester.isEmpty(); } /** * @param value {@link #requester} (The individual, organization, or device that initiated the request and has responsibility for its activation.) */ public MedicationRequest setRequester(Reference value) { this.requester = value; return this; } /** * @return {@link #reported} (Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report.). This is the underlying object with id, value and extensions. The accessor "getReported" gives direct access to the value */ public BooleanType getReportedElement() { if (this.reported == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.reported"); else if (Configuration.doAutoCreate()) this.reported = new BooleanType(); // bb return this.reported; } public boolean hasReportedElement() { return this.reported != null && !this.reported.isEmpty(); } public boolean hasReported() { return this.reported != null && !this.reported.isEmpty(); } /** * @param value {@link #reported} (Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report.). This is the underlying object with id, value and extensions. The accessor "getReported" gives direct access to the value */ public MedicationRequest setReportedElement(BooleanType value) { this.reported = value; return this; } /** * @return Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report. */ public boolean getReported() { return this.reported == null || this.reported.isEmpty() ? false : this.reported.getValue(); } /** * @param value Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report. */ public MedicationRequest setReported(boolean value) { if (this.reported == null) this.reported = new BooleanType(); this.reported.setValue(value); return this; } /** * @return {@link #performerType} (Indicates the type of performer of the administration of the medication.) */ public CodeableConcept getPerformerType() { if (this.performerType == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.performerType"); else if (Configuration.doAutoCreate()) this.performerType = new CodeableConcept(); // cc return this.performerType; } public boolean hasPerformerType() { return this.performerType != null && !this.performerType.isEmpty(); } /** * @param value {@link #performerType} (Indicates the type of performer of the administration of the medication.) */ public MedicationRequest setPerformerType(CodeableConcept value) { this.performerType = value; return this; } /** * @return {@link #performer} (The specified desired performer of the medication treatment (e.g. the performer of the medication administration). For devices, this is the device that is intended to perform the administration of the medication. An IV Pump would be an example of a device that is performing the administration. Both the IV Pump and the practitioner that set the rate or bolus on the pump can be listed as performers.) */ public List<Reference> getPerformer() { if (this.performer == null) this.performer = new ArrayList<Reference>(); return this.performer; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setPerformer(List<Reference> thePerformer) { this.performer = thePerformer; return this; } public boolean hasPerformer() { if (this.performer == null) return false; for (Reference item : this.performer) if (!item.isEmpty()) return true; return false; } public Reference addPerformer() { //3 Reference t = new Reference(); if (this.performer == null) this.performer = new ArrayList<Reference>(); this.performer.add(t); return t; } public MedicationRequest addPerformer(Reference t) { //3 if (t == null) return this; if (this.performer == null) this.performer = new ArrayList<Reference>(); this.performer.add(t); return this; } /** * @return The first repetition of repeating field {@link #performer}, creating it if it does not already exist {3} */ public Reference getPerformerFirstRep() { if (getPerformer().isEmpty()) { addPerformer(); } return getPerformer().get(0); } /** * @return {@link #device} (The intended type of device that is to be used for the administration of the medication (for example, PCA Pump).) */ public CodeableReference getDevice() { if (this.device == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.device"); else if (Configuration.doAutoCreate()) this.device = new CodeableReference(); // cc return this.device; } public boolean hasDevice() { return this.device != null && !this.device.isEmpty(); } /** * @param value {@link #device} (The intended type of device that is to be used for the administration of the medication (for example, PCA Pump).) */ public MedicationRequest setDevice(CodeableReference value) { this.device = value; return this; } /** * @return {@link #recorder} (The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order.) */ public Reference getRecorder() { if (this.recorder == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.recorder"); else if (Configuration.doAutoCreate()) this.recorder = new Reference(); // cc return this.recorder; } public boolean hasRecorder() { return this.recorder != null && !this.recorder.isEmpty(); } /** * @param value {@link #recorder} (The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order.) */ public MedicationRequest setRecorder(Reference value) { this.recorder = value; return this; } /** * @return {@link #reason} (The reason or the indication for ordering or not ordering the medication.) */ public List<CodeableReference> getReason() { if (this.reason == null) this.reason = new ArrayList<CodeableReference>(); return this.reason; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setReason(List<CodeableReference> theReason) { this.reason = theReason; return this; } public boolean hasReason() { if (this.reason == null) return false; for (CodeableReference item : this.reason) if (!item.isEmpty()) return true; return false; } public CodeableReference addReason() { //3 CodeableReference t = new CodeableReference(); if (this.reason == null) this.reason = new ArrayList<CodeableReference>(); this.reason.add(t); return t; } public MedicationRequest addReason(CodeableReference t) { //3 if (t == null) return this; if (this.reason == null) this.reason = new ArrayList<CodeableReference>(); this.reason.add(t); return this; } /** * @return The first repetition of repeating field {@link #reason}, creating it if it does not already exist {3} */ public CodeableReference getReasonFirstRep() { if (getReason().isEmpty()) { addReason(); } return getReason().get(0); } /** * @return {@link #courseOfTherapyType} (The description of the overall pattern of the administration of the medication to the patient.) */ public CodeableConcept getCourseOfTherapyType() { if (this.courseOfTherapyType == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.courseOfTherapyType"); else if (Configuration.doAutoCreate()) this.courseOfTherapyType = new CodeableConcept(); // cc return this.courseOfTherapyType; } public boolean hasCourseOfTherapyType() { return this.courseOfTherapyType != null && !this.courseOfTherapyType.isEmpty(); } /** * @param value {@link #courseOfTherapyType} (The description of the overall pattern of the administration of the medication to the patient.) */ public MedicationRequest setCourseOfTherapyType(CodeableConcept value) { this.courseOfTherapyType = value; return this; } /** * @return {@link #insurance} (Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service.) */ public List<Reference> getInsurance() { if (this.insurance == null) this.insurance = new ArrayList<Reference>(); return this.insurance; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setInsurance(List<Reference> theInsurance) { this.insurance = theInsurance; return this; } public boolean hasInsurance() { if (this.insurance == null) return false; for (Reference item : this.insurance) if (!item.isEmpty()) return true; return false; } public Reference addInsurance() { //3 Reference t = new Reference(); if (this.insurance == null) this.insurance = new ArrayList<Reference>(); this.insurance.add(t); return t; } public MedicationRequest addInsurance(Reference t) { //3 if (t == null) return this; if (this.insurance == null) this.insurance = new ArrayList<Reference>(); this.insurance.add(t); return this; } /** * @return The first repetition of repeating field {@link #insurance}, creating it if it does not already exist {3} */ public Reference getInsuranceFirstRep() { if (getInsurance().isEmpty()) { addInsurance(); } return getInsurance().get(0); } /** * @return {@link #note} (Extra information about the prescription that could not be conveyed by the other attributes.) */ public List<Annotation> getNote() { if (this.note == null) this.note = new ArrayList<Annotation>(); return this.note; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setNote(List<Annotation> theNote) { this.note = theNote; return this; } public boolean hasNote() { if (this.note == null) return false; for (Annotation item : this.note) if (!item.isEmpty()) return true; return false; } public Annotation addNote() { //3 Annotation t = new Annotation(); if (this.note == null) this.note = new ArrayList<Annotation>(); this.note.add(t); return t; } public MedicationRequest addNote(Annotation t) { //3 if (t == null) return this; if (this.note == null) this.note = new ArrayList<Annotation>(); this.note.add(t); return this; } /** * @return The first repetition of repeating field {@link #note}, creating it if it does not already exist {3} */ public Annotation getNoteFirstRep() { if (getNote().isEmpty()) { addNote(); } return getNote().get(0); } /** * @return {@link #dose} (Indicates how the medication is to be used by the patient.) */ public MedicationRequestDoseComponent getDose() { if (this.dose == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.dose"); else if (Configuration.doAutoCreate()) this.dose = new MedicationRequestDoseComponent(); // cc return this.dose; } public boolean hasDose() { return this.dose != null && !this.dose.isEmpty(); } /** * @param value {@link #dose} (Indicates how the medication is to be used by the patient.) */ public MedicationRequest setDose(MedicationRequestDoseComponent value) { this.dose = value; return this; } /** * @return {@link #dispenseRequest} (Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department.) */ public MedicationRequestDispenseRequestComponent getDispenseRequest() { if (this.dispenseRequest == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.dispenseRequest"); else if (Configuration.doAutoCreate()) this.dispenseRequest = new MedicationRequestDispenseRequestComponent(); // cc return this.dispenseRequest; } public boolean hasDispenseRequest() { return this.dispenseRequest != null && !this.dispenseRequest.isEmpty(); } /** * @param value {@link #dispenseRequest} (Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department.) */ public MedicationRequest setDispenseRequest(MedicationRequestDispenseRequestComponent value) { this.dispenseRequest = value; return this; } /** * @return {@link #substitution} (Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done.) */ public MedicationRequestSubstitutionComponent getSubstitution() { if (this.substitution == null) if (Configuration.errorOnAutoCreate()) throw new Error("Attempt to auto-create MedicationRequest.substitution"); else if (Configuration.doAutoCreate()) this.substitution = new MedicationRequestSubstitutionComponent(); // cc return this.substitution; } public boolean hasSubstitution() { return this.substitution != null && !this.substitution.isEmpty(); } /** * @param value {@link #substitution} (Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done.) */ public MedicationRequest setSubstitution(MedicationRequestSubstitutionComponent value) { this.substitution = value; return this; } /** * @return {@link #eventHistory} (Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource.) */ public List<Reference> getEventHistory() { if (this.eventHistory == null) this.eventHistory = new ArrayList<Reference>(); return this.eventHistory; } /** * @return Returns a reference to <code>this</code> for easy method chaining */ public MedicationRequest setEventHistory(List<Reference> theEventHistory) { this.eventHistory = theEventHistory; return this; } public boolean hasEventHistory() { if (this.eventHistory == null) return false; for (Reference item : this.eventHistory) if (!item.isEmpty()) return true; return false; } public Reference addEventHistory() { //3 Reference t = new Reference(); if (this.eventHistory == null) this.eventHistory = new ArrayList<Reference>(); this.eventHistory.add(t); return t; } public MedicationRequest addEventHistory(Reference t) { //3 if (t == null) return this; if (this.eventHistory == null) this.eventHistory = new ArrayList<Reference>(); this.eventHistory.add(t); return this; } /** * @return The first repetition of repeating field {@link #eventHistory}, creating it if it does not already exist {3} */ public Reference getEventHistoryFirstRep() { if (getEventHistory().isEmpty()) { addEventHistory(); } return getEventHistory().get(0); } protected void listChildren(List<Property> children) { super.listChildren(children); children.add(new Property("identifier", "Identifier", "Identifiers associated with this medication request that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.", 0, java.lang.Integer.MAX_VALUE, identifier)); children.add(new Property("basedOn", "Reference(CarePlan|MedicationRequest|ServiceRequest|ImmunizationRecommendation)", "A plan or request that is fulfilled in whole or in part by this medication request.", 0, java.lang.Integer.MAX_VALUE, basedOn)); children.add(new Property("priorPrescription", "Reference(MedicationRequest)", "A link to a resource representing an earlier order related order or prescription.", 0, 1, priorPrescription)); children.add(new Property("groupIdentifier", "Identifier", "A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription.", 0, 1, groupIdentifier)); children.add(new Property("status", "code", "A code specifying the current state of the order. Generally, this will be active or completed state.", 0, 1, status)); children.add(new Property("statusReason", "CodeableConcept", "Captures the reason for the current state of the MedicationRequest.", 0, 1, statusReason)); children.add(new Property("statusChanged", "dateTime", "The date (and perhaps time) when the status was changed.", 0, 1, statusChanged)); children.add(new Property("intent", "code", "Whether the request is a proposal, plan, or an original order.", 0, 1, intent)); children.add(new Property("category", "CodeableConcept", "Indicates the grouping or category of medication request (for example, drug classification like ATC, where meds would be administered, legal category of the medication.).", 0, java.lang.Integer.MAX_VALUE, category)); children.add(new Property("priority", "code", "Indicates how quickly the Medication Request should be addressed with respect to other requests.", 0, 1, priority)); children.add(new Property("doNotPerform", "boolean", "If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication.", 0, 1, doNotPerform)); children.add(new Property("medication", "CodeableReference(Medication)", "Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications.", 0, 1, medication)); children.add(new Property("subject", "Reference(Patient|Group)", "A link to a resource representing the person or set of individuals to whom the medication will be given.", 0, 1, subject)); children.add(new Property("informationSource", "Reference(Patient|Practitioner|PractitionerRole|RelatedPerson|Organization)", "The person or organization who provided the information about this request, if the source is someone other than the requestor. This is often used when the MedicationRequest is reported by another person.", 0, java.lang.Integer.MAX_VALUE, informationSource)); children.add(new Property("encounter", "Reference(Encounter)", "The Encounter during which this [x] was created or to which the creation of this record is tightly associated.", 0, 1, encounter)); children.add(new Property("supportingInformation", "Reference(Any)", "Information to support fulfilling (i.e. dispensing or administering) of the medication, for example, patient height and weight, a MedicationUsage for the patient).", 0, java.lang.Integer.MAX_VALUE, supportingInformation)); children.add(new Property("authoredOn", "dateTime", "The date (and perhaps time) when the prescription was initially written or authored on.", 0, 1, authoredOn)); children.add(new Property("requester", "Reference(Practitioner|PractitionerRole|Organization|Patient|RelatedPerson|Device)", "The individual, organization, or device that initiated the request and has responsibility for its activation.", 0, 1, requester)); children.add(new Property("reported", "boolean", "Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report.", 0, 1, reported)); children.add(new Property("performerType", "CodeableConcept", "Indicates the type of performer of the administration of the medication.", 0, 1, performerType)); children.add(new Property("performer", "Reference(Practitioner|PractitionerRole|Organization|Patient|DeviceDefinition|RelatedPerson|CareTeam|HealthcareService)", "The specified desired performer of the medication treatment (e.g. the performer of the medication administration). For devices, this is the device that is intended to perform the administration of the medication. An IV Pump would be an example of a device that is performing the administration. Both the IV Pump and the practitioner that set the rate or bolus on the pump can be listed as performers.", 0, java.lang.Integer.MAX_VALUE, performer)); children.add(new Property("device", "CodeableReference(DeviceDefinition)", "The intended type of device that is to be used for the administration of the medication (for example, PCA Pump).", 0, 1, device)); children.add(new Property("recorder", "Reference(Practitioner|PractitionerRole)", "The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order.", 0, 1, recorder)); children.add(new Property("reason", "CodeableReference(Condition|Observation)", "The reason or the indication for ordering or not ordering the medication.", 0, java.lang.Integer.MAX_VALUE, reason)); children.add(new Property("courseOfTherapyType", "CodeableConcept", "The description of the overall pattern of the administration of the medication to the patient.", 0, 1, courseOfTherapyType)); children.add(new Property("insurance", "Reference(Coverage|ClaimResponse)", "Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service.", 0, java.lang.Integer.MAX_VALUE, insurance)); children.add(new Property("note", "Annotation", "Extra information about the prescription that could not be conveyed by the other attributes.", 0, java.lang.Integer.MAX_VALUE, note)); children.add(new Property("dose", "", "Indicates how the medication is to be used by the patient.", 0, 1, dose)); children.add(new Property("dispenseRequest", "", "Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department.", 0, 1, dispenseRequest)); children.add(new Property("substitution", "", "Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done.", 0, 1, substitution)); children.add(new Property("eventHistory", "Reference(Provenance)", "Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource.", 0, java.lang.Integer.MAX_VALUE, eventHistory)); } @Override public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException { switch (_hash) { case -1618432855: /*identifier*/ return new Property("identifier", "Identifier", "Identifiers associated with this medication request that are defined by business processes and/or used to refer to it when a direct URL reference to the resource itself is not appropriate. They are business identifiers assigned to this resource by the performer or other systems and remain constant as the resource is updated and propagates from server to server.", 0, java.lang.Integer.MAX_VALUE, identifier); case -332612366: /*basedOn*/ return new Property("basedOn", "Reference(CarePlan|MedicationRequest|ServiceRequest|ImmunizationRecommendation)", "A plan or request that is fulfilled in whole or in part by this medication request.", 0, java.lang.Integer.MAX_VALUE, basedOn); case -486355964: /*priorPrescription*/ return new Property("priorPrescription", "Reference(MedicationRequest)", "A link to a resource representing an earlier order related order or prescription.", 0, 1, priorPrescription); case -445338488: /*groupIdentifier*/ return new Property("groupIdentifier", "Identifier", "A shared identifier common to all requests that were authorized more or less simultaneously by a single author, representing the identifier of the requisition or prescription.", 0, 1, groupIdentifier); case -892481550: /*status*/ return new Property("status", "code", "A code specifying the current state of the order. Generally, this will be active or completed state.", 0, 1, status); case 2051346646: /*statusReason*/ return new Property("statusReason", "CodeableConcept", "Captures the reason for the current state of the MedicationRequest.", 0, 1, statusReason); case -1174686110: /*statusChanged*/ return new Property("statusChanged", "dateTime", "The date (and perhaps time) when the status was changed.", 0, 1, statusChanged); case -1183762788: /*intent*/ return new Property("intent", "code", "Whether the request is a proposal, plan, or an original order.", 0, 1, intent); case 50511102: /*category*/ return new Property("category", "CodeableConcept", "Indicates the grouping or category of medication request (for example, drug classification like ATC, where meds would be administered, legal category of the medication.).", 0, java.lang.Integer.MAX_VALUE, category); case -1165461084: /*priority*/ return new Property("priority", "code", "Indicates how quickly the Medication Request should be addressed with respect to other requests.", 0, 1, priority); case -1788508167: /*doNotPerform*/ return new Property("doNotPerform", "boolean", "If true, indicates that the provider is asking for the patient to either stop taking or to not start taking the specified medication. For example, the patient is taking an existing medication and the provider is changing their medication. They want to create two seperate requests: one to stop using the current medication and another to start the new medication.", 0, 1, doNotPerform); case 1998965455: /*medication*/ return new Property("medication", "CodeableReference(Medication)", "Identifies the medication being requested. This is a link to a resource that represents the medication which may be the details of the medication or simply an attribute carrying a code that identifies the medication from a known list of medications.", 0, 1, medication); case -1867885268: /*subject*/ return new Property("subject", "Reference(Patient|Group)", "A link to a resource representing the person or set of individuals to whom the medication will be given.", 0, 1, subject); case -2123220889: /*informationSource*/ return new Property("informationSource", "Reference(Patient|Practitioner|PractitionerRole|RelatedPerson|Organization)", "The person or organization who provided the information about this request, if the source is someone other than the requestor. This is often used when the MedicationRequest is reported by another person.", 0, java.lang.Integer.MAX_VALUE, informationSource); case 1524132147: /*encounter*/ return new Property("encounter", "Reference(Encounter)", "The Encounter during which this [x] was created or to which the creation of this record is tightly associated.", 0, 1, encounter); case -1248768647: /*supportingInformation*/ return new Property("supportingInformation", "Reference(Any)", "Information to support fulfilling (i.e. dispensing or administering) of the medication, for example, patient height and weight, a MedicationUsage for the patient).", 0, java.lang.Integer.MAX_VALUE, supportingInformation); case -1500852503: /*authoredOn*/ return new Property("authoredOn", "dateTime", "The date (and perhaps time) when the prescription was initially written or authored on.", 0, 1, authoredOn); case 693933948: /*requester*/ return new Property("requester", "Reference(Practitioner|PractitionerRole|Organization|Patient|RelatedPerson|Device)", "The individual, organization, or device that initiated the request and has responsibility for its activation.", 0, 1, requester); case -427039533: /*reported*/ return new Property("reported", "boolean", "Indicates if this record was captured as a secondary 'reported' record rather than as an original primary source-of-truth record. It may also indicate the source of the report.", 0, 1, reported); case -901444568: /*performerType*/ return new Property("performerType", "CodeableConcept", "Indicates the type of performer of the administration of the medication.", 0, 1, performerType); case 481140686: /*performer*/ return new Property("performer", "Reference(Practitioner|PractitionerRole|Organization|Patient|DeviceDefinition|RelatedPerson|CareTeam|HealthcareService)", "The specified desired performer of the medication treatment (e.g. the performer of the medication administration). For devices, this is the device that is intended to perform the administration of the medication. An IV Pump would be an example of a device that is performing the administration. Both the IV Pump and the practitioner that set the rate or bolus on the pump can be listed as performers.", 0, java.lang.Integer.MAX_VALUE, performer); case -1335157162: /*device*/ return new Property("device", "CodeableReference(DeviceDefinition)", "The intended type of device that is to be used for the administration of the medication (for example, PCA Pump).", 0, 1, device); case -799233858: /*recorder*/ return new Property("recorder", "Reference(Practitioner|PractitionerRole)", "The person who entered the order on behalf of another individual for example in the case of a verbal or a telephone order.", 0, 1, recorder); case -934964668: /*reason*/ return new Property("reason", "CodeableReference(Condition|Observation)", "The reason or the indication for ordering or not ordering the medication.", 0, java.lang.Integer.MAX_VALUE, reason); case -447282031: /*courseOfTherapyType*/ return new Property("courseOfTherapyType", "CodeableConcept", "The description of the overall pattern of the administration of the medication to the patient.", 0, 1, courseOfTherapyType); case 73049818: /*insurance*/ return new Property("insurance", "Reference(Coverage|ClaimResponse)", "Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be required for delivering the requested service.", 0, java.lang.Integer.MAX_VALUE, insurance); case 3387378: /*note*/ return new Property("note", "Annotation", "Extra information about the prescription that could not be conveyed by the other attributes.", 0, java.lang.Integer.MAX_VALUE, note); case 3089437: /*dose*/ return new Property("dose", "", "Indicates how the medication is to be used by the patient.", 0, 1, dose); case 824620658: /*dispenseRequest*/ return new Property("dispenseRequest", "", "Indicates the specific details for the dispense or medication supply part of a medication request (also known as a Medication Prescription or Medication Order). Note that this information is not always sent with the order. There may be in some settings (e.g. hospitals) institutional or system support for completing the dispense details in the pharmacy department.", 0, 1, dispenseRequest); case 826147581: /*substitution*/ return new Property("substitution", "", "Indicates whether or not substitution can or should be part of the dispense. In some cases, substitution must happen, in other cases substitution must not happen. This block explains the prescriber's intent. If nothing is specified substitution may be done.", 0, 1, substitution); case 1835190426: /*eventHistory*/ return new Property("eventHistory", "Reference(Provenance)", "Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource.", 0, java.lang.Integer.MAX_VALUE, eventHistory); default: return super.getNamedProperty(_hash, _name, _checkValid); } } @Override public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException { switch (hash) { case -1618432855: /*identifier*/ return this.identifier == null ? new Base[0] : this.identifier.toArray(new Base[this.identifier.size()]); // Identifier case -332612366: /*basedOn*/ return this.basedOn == null ? new Base[0] : this.basedOn.toArray(new Base[this.basedOn.size()]); // Reference case -486355964: /*priorPrescription*/ return this.priorPrescription == null ? new Base[0] : new Base[] {this.priorPrescription}; // Reference case -445338488: /*groupIdentifier*/ return this.groupIdentifier == null ? new Base[0] : new Base[] {this.groupIdentifier}; // Identifier case -892481550: /*status*/ return this.status == null ? new Base[0] : new Base[] {this.status}; // Enumeration<MedicationrequestStatus> case 2051346646: /*statusReason*/ return this.statusReason == null ? new Base[0] : new Base[] {this.statusReason}; // CodeableConcept case -1174686110: /*statusChanged*/ return this.statusChanged == null ? new Base[0] : new Base[] {this.statusChanged}; // DateTimeType case -1183762788: /*intent*/ return this.intent == null ? new Base[0] : new Base[] {this.intent}; // Enumeration<MedicationRequestIntent> case 50511102: /*category*/ return this.category == null ? new Base[0] : this.category.toArray(new Base[this.category.size()]); // CodeableConcept case -1165461084: /*priority*/ return this.priority == null ? new Base[0] : new Base[] {this.priority}; // Enumeration<RequestPriority> case -1788508167: /*doNotPerform*/ return this.doNotPerform == null ? new Base[0] : new Base[] {this.doNotPerform}; // BooleanType case 1998965455: /*medication*/ return this.medication == null ? new Base[0] : new Base[] {this.medication}; // CodeableReference case -1867885268: /*subject*/ return this.subject == null ? new Base[0] : new Base[] {this.subject}; // Reference case -2123220889: /*informationSource*/ return this.informationSource == null ? new Base[0] : this.informationSource.toArray(new Base[this.informationSource.size()]); // Reference case 1524132147: /*encounter*/ return this.encounter == null ? new Base[0] : new Base[] {this.encounter}; // Reference case -1248768647: /*supportingInformation*/ return this.supportingInformation == null ? new Base[0] : this.supportingInformation.toArray(new Base[this.supportingInformation.size()]); // Reference case -1500852503: /*authoredOn*/ return this.authoredOn == null ? new Base[0] : new Base[] {this.authoredOn}; // DateTimeType case 693933948: /*requester*/ return this.requester == null ? new Base[0] : new Base[] {this.requester}; // Reference case -427039533: /*reported*/ return this.reported == null ? new Base[0] : new Base[] {this.reported}; // BooleanType case -901444568: /*performerType*/ return this.performerType == null ? new Base[0] : new Base[] {this.performerType}; // CodeableConcept case 481140686: /*performer*/ return this.performer == null ? new Base[0] : this.performer.toArray(new Base[this.performer.size()]); // Reference case -1335157162: /*device*/ return this.device == null ? new Base[0] : new Base[] {this.device}; // CodeableReference case -799233858: /*recorder*/ return this.recorder == null ? new Base[0] : new Base[] {this.recorder}; // Reference case -934964668: /*reason*/ return this.reason == null ? new Base[0] : this.reason.toArray(new Base[this.reason.size()]); // CodeableReference case -447282031: /*courseOfTherapyType*/ return this.courseOfTherapyType == null ? new Base[0] : new Base[] {this.courseOfTherapyType}; // CodeableConcept case 73049818: /*insurance*/ return this.insurance == null ? new Base[0] : this.insurance.toArray(new Base[this.insurance.size()]); // Reference case 3387378: /*note*/ return this.note == null ? new Base[0] : this.note.toArray(new Base[this.note.size()]); // Annotation case 3089437: /*dose*/ return this.dose == null ? new Base[0] : new Base[] {this.dose}; // MedicationRequestDoseComponent case 824620658: /*dispenseRequest*/ return this.dispenseRequest == null ? new Base[0] : new Base[] {this.dispenseRequest}; // MedicationRequestDispenseRequestComponent case 826147581: /*substitution*/ return this.substitution == null ? new Base[0] : new Base[] {this.substitution}; // MedicationRequestSubstitutionComponent case 1835190426: /*eventHistory*/ return this.eventHistory == null ? new Base[0] : this.eventHistory.toArray(new Base[this.eventHistory.size()]); // Reference default: return super.getProperty(hash, name, checkValid); } } @Override public Base setProperty(int hash, String name, Base value) throws FHIRException { switch (hash) { case -1618432855: // identifier this.getIdentifier().add(TypeConvertor.castToIdentifier(value)); // Identifier return value; case -332612366: // basedOn this.getBasedOn().add(TypeConvertor.castToReference(value)); // Reference return value; case -486355964: // priorPrescription this.priorPrescription = TypeConvertor.castToReference(value); // Reference return value; case -445338488: // groupIdentifier this.groupIdentifier = TypeConvertor.castToIdentifier(value); // Identifier return value; case -892481550: // status value = new MedicationrequestStatusEnumFactory().fromType(TypeConvertor.castToCode(value)); this.status = (Enumeration) value; // Enumeration<MedicationrequestStatus> return value; case 2051346646: // statusReason this.statusReason = TypeConvertor.castToCodeableConcept(value); // CodeableConcept return value; case -1174686110: // statusChanged this.statusChanged = TypeConvertor.castToDateTime(value); // DateTimeType return value; case -1183762788: // intent value = new MedicationRequestIntentEnumFactory().fromType(TypeConvertor.castToCode(value)); this.intent = (Enumeration) value; // Enumeration<MedicationRequestIntent> return value; case 50511102: // category this.getCategory().add(TypeConvertor.castToCodeableConcept(value)); // CodeableConcept return value; case -1165461084: // priority value = new RequestPriorityEnumFactory().fromType(TypeConvertor.castToCode(value)); this.priority = (Enumeration) value; // Enumeration<RequestPriority> return value; case -1788508167: // doNotPerform this.doNotPerform = TypeConvertor.castToBoolean(value); // BooleanType return value; case 1998965455: // medication this.medication = TypeConvertor.castToCodeableReference(value); // CodeableReference return value; case -1867885268: // subject this.subject = TypeConvertor.castToReference(value); // Reference return value; case -2123220889: // informationSource this.getInformationSource().add(TypeConvertor.castToReference(value)); // Reference return value; case 1524132147: // encounter this.encounter = TypeConvertor.castToReference(value); // Reference return value; case -1248768647: // supportingInformation this.getSupportingInformation().add(TypeConvertor.castToReference(value)); // Reference return value; case -1500852503: // authoredOn this.authoredOn = TypeConvertor.castToDateTime(value); // DateTimeType return value; case 693933948: // requester this.requester = TypeConvertor.castToReference(value); // Reference return value; case -427039533: // reported this.reported = TypeConvertor.castToBoolean(value); // BooleanType return value; case -901444568: // performerType this.performerType = TypeConvertor.castToCodeableConcept(value); // CodeableConcept return value; case 481140686: // performer this.getPerformer().add(TypeConvertor.castToReference(value)); // Reference return value; case -1335157162: // device this.device = TypeConvertor.castToCodeableReference(value); // CodeableReference return value; case -799233858: // recorder this.recorder = TypeConvertor.castToReference(value); // Reference return value; case -934964668: // reason this.getReason().add(TypeConvertor.castToCodeableReference(value)); // CodeableReference return value; case -447282031: // courseOfTherapyType this.courseOfTherapyType = TypeConvertor.castToCodeableConcept(value); // CodeableConcept return value; case 73049818: // insurance this.getInsurance().add(TypeConvertor.castToReference(value)); // Reference return value; case 3387378: // note this.getNote().add(TypeConvertor.castToAnnotation(value)); // Annotation return value; case 3089437: // dose this.dose = (MedicationRequestDoseComponent) value; // MedicationRequestDoseComponent return value; case 824620658: // dispenseRequest this.dispenseRequest = (MedicationRequestDispenseRequestComponent) value; // MedicationRequestDispenseRequestComponent return value; case 826147581: // substitution this.substitution = (MedicationRequestSubstitutionComponent) value; // MedicationRequestSubstitutionComponent return value; case 1835190426: // eventHistory this.getEventHistory().add(TypeConvertor.castToReference(value)); // Reference return value; default: return super.setProperty(hash, name, value); } } @Override public Base setProperty(String name, Base value) throws FHIRException { if (name.equals("identifier")) { this.getIdentifier().add(TypeConvertor.castToIdentifier(value)); } else if (name.equals("basedOn")) { this.getBasedOn().add(TypeConvertor.castToReference(value)); } else if (name.equals("priorPrescription")) { this.priorPrescription = TypeConvertor.castToReference(value); // Reference } else if (name.equals("groupIdentifier")) { this.groupIdentifier = TypeConvertor.castToIdentifier(value); // Identifier } else if (name.equals("status")) { value = new MedicationrequestStatusEnumFactory().fromType(TypeConvertor.castToCode(value)); this.status = (Enumeration) value; // Enumeration<MedicationrequestStatus> } else if (name.equals("statusReason")) { this.statusReason = TypeConvertor.castToCodeableConcept(value); // CodeableConcept } else if (name.equals("statusChanged")) { this.statusChanged = TypeConvertor.castToDateTime(value); // DateTimeType } else if (name.equals("intent")) { value = new MedicationRequestIntentEnumFactory().fromType(TypeConvertor.castToCode(value)); this.intent = (Enumeration) value; // Enumeration<MedicationRequestIntent> } else if (name.equals("category")) { this.getCategory().add(TypeConvertor.castToCodeableConcept(value)); } else if (name.equals("priority")) { value = new RequestPriorityEnumFactory().fromType(TypeConvertor.castToCode(value)); this.priority = (Enumeration) value; // Enumeration<RequestPriority> } else if (name.equals("doNotPerform")) { this.doNotPerform = TypeConvertor.castToBoolean(value); // BooleanType } else if (name.equals("medication")) { this.medication = TypeConvertor.castToCodeableReference(value); // CodeableReference } else if (name.equals("subject")) { this.subject = TypeConvertor.castToReference(value); // Reference } else if (name.equals("informationSource")) { this.getInformationSource().add(TypeConvertor.castToReference(value)); } else if (name.equals("encounter")) { this.encounter = TypeConvertor.castToReference(value); // Reference } else if (name.equals("supportingInformation")) { this.getSupportingInformation().add(TypeConvertor.castToReference(value)); } else if (name.equals("authoredOn")) { this.authoredOn = TypeConvertor.castToDateTime(value); // DateTimeType } else if (name.equals("requester")) { this.requester = TypeConvertor.castToReference(value); // Reference } else if (name.equals("reported")) { this.reported = TypeConvertor.castToBoolean(value); // BooleanType } else if (name.equals("performerType")) { this.performerType = TypeConvertor.castToCodeableConcept(value); // CodeableConcept } else if (name.equals("performer")) { this.getPerformer().add(TypeConvertor.castToReference(value)); } else if (name.equals("device")) { this.device = TypeConvertor.castToCodeableReference(value); // CodeableReference } else if (name.equals("recorder")) { this.recorder = TypeConvertor.castToReference(value); // Reference } else if (name.equals("reason")) { this.getReason().add(TypeConvertor.castToCodeableReference(value)); } else if (name.equals("courseOfTherapyType")) { this.courseOfTherapyType = TypeConvertor.castToCodeableConcept(value); // CodeableConcept } else if (name.equals("insurance")) { this.getInsurance().add(TypeConvertor.castToReference(value)); } else if (name.equals("note")) { this.getNote().add(TypeConvertor.castToAnnotation(value)); } else if (name.equals("dose")) { this.dose = (MedicationRequestDoseComponent) value; // MedicationRequestDoseComponent } else if (name.equals("dispenseRequest")) { this.dispenseRequest = (MedicationRequestDispenseRequestComponent) value; // MedicationRequestDispenseRequestComponent } else if (name.equals("substitution")) { this.substitution = (MedicationRequestSubstitutionComponent) value; // MedicationRequestSubstitutionComponent } else if (name.equals("eventHistory")) { this.getEventHistory().add(TypeConvertor.castToReference(value)); } else return super.setProperty(name, value); return value; } @Override public Base makeProperty(int hash, String name) throws FHIRException { switch (hash) { case -1618432855: return addIdentifier(); case -332612366: return addBasedOn(); case -486355964: return getPriorPrescription(); case -445338488: return getGroupIdentifier(); case -892481550: return getStatusElement(); case 2051346646: return getStatusReason(); case -1174686110: return getStatusChangedElement(); case -1183762788: return getIntentElement(); case 50511102: return addCategory(); case -1165461084: return getPriorityElement(); case -1788508167: return getDoNotPerformElement(); case 1998965455: return getMedication(); case -1867885268: return getSubject(); case -2123220889: return addInformationSource(); case 1524132147: return getEncounter(); case -1248768647: return addSupportingInformation(); case -1500852503: return getAuthoredOnElement(); case 693933948: return getRequester(); case -427039533: return getReportedElement(); case -901444568: return getPerformerType(); case 481140686: return addPerformer(); case -1335157162: return getDevice(); case -799233858: return getRecorder(); case -934964668: return addReason(); case -447282031: return getCourseOfTherapyType(); case 73049818: return addInsurance(); case 3387378: return addNote(); case 3089437: return getDose(); case 824620658: return getDispenseRequest(); case 826147581: return getSubstitution(); case 1835190426: return addEventHistory(); default: return super.makeProperty(hash, name); } } @Override public String[] getTypesForProperty(int hash, String name) throws FHIRException { switch (hash) { case -1618432855: /*identifier*/ return new String[] {"Identifier"}; case -332612366: /*basedOn*/ return new String[] {"Reference"}; case -486355964: /*priorPrescription*/ return new String[] {"Reference"}; case -445338488: /*groupIdentifier*/ return new String[] {"Identifier"}; case -892481550: /*status*/ return new String[] {"code"}; case 2051346646: /*statusReason*/ return new String[] {"CodeableConcept"}; case -1174686110: /*statusChanged*/ return new String[] {"dateTime"}; case -1183762788: /*intent*/ return new String[] {"code"}; case 50511102: /*category*/ return new String[] {"CodeableConcept"}; case -1165461084: /*priority*/ return new String[] {"code"}; case -1788508167: /*doNotPerform*/ return new String[] {"boolean"}; case 1998965455: /*medication*/ return new String[] {"CodeableReference"}; case -1867885268: /*subject*/ return new String[] {"Reference"}; case -2123220889: /*informationSource*/ return new String[] {"Reference"}; case 1524132147: /*encounter*/ return new String[] {"Reference"}; case -1248768647: /*supportingInformation*/ return new String[] {"Reference"}; case -1500852503: /*authoredOn*/ return new String[] {"dateTime"}; case 693933948: /*requester*/ return new String[] {"Reference"}; case -427039533: /*reported*/ return new String[] {"boolean"}; case -901444568: /*performerType*/ return new String[] {"CodeableConcept"}; case 481140686: /*performer*/ return new String[] {"Reference"}; case -1335157162: /*device*/ return new String[] {"CodeableReference"}; case -799233858: /*recorder*/ return new String[] {"Reference"}; case -934964668: /*reason*/ return new String[] {"CodeableReference"}; case -447282031: /*courseOfTherapyType*/ return new String[] {"CodeableConcept"}; case 73049818: /*insurance*/ return new String[] {"Reference"}; case 3387378: /*note*/ return new String[] {"Annotation"}; case 3089437: /*dose*/ return new String[] {}; case 824620658: /*dispenseRequest*/ return new String[] {}; case 826147581: /*substitution*/ return new String[] {}; case 1835190426: /*eventHistory*/ return new String[] {"Reference"}; default: return super.getTypesForProperty(hash, name); } } @Override public Base addChild(String name) throws FHIRException { if (name.equals("identifier")) { return addIdentifier(); } else if (name.equals("basedOn")) { return addBasedOn(); } else if (name.equals("priorPrescription")) { this.priorPrescription = new Reference(); return this.priorPrescription; } else if (name.equals("groupIdentifier")) { this.groupIdentifier = new Identifier(); return this.groupIdentifier; } else if (name.equals("status")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.status"); } else if (name.equals("statusReason")) { this.statusReason = new CodeableConcept(); return this.statusReason; } else if (name.equals("statusChanged")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.statusChanged"); } else if (name.equals("intent")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.intent"); } else if (name.equals("category")) { return addCategory(); } else if (name.equals("priority")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.priority"); } else if (name.equals("doNotPerform")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.doNotPerform"); } else if (name.equals("medication")) { this.medication = new CodeableReference(); return this.medication; } else if (name.equals("subject")) { this.subject = new Reference(); return this.subject; } else if (name.equals("informationSource")) { return addInformationSource(); } else if (name.equals("encounter")) { this.encounter = new Reference(); return this.encounter; } else if (name.equals("supportingInformation")) { return addSupportingInformation(); } else if (name.equals("authoredOn")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.authoredOn"); } else if (name.equals("requester")) { this.requester = new Reference(); return this.requester; } else if (name.equals("reported")) { throw new FHIRException("Cannot call addChild on a primitive type MedicationRequest.reported"); } else if (name.equals("performerType")) { this.performerType = new CodeableConcept(); return this.performerType; } else if (name.equals("performer")) { return addPerformer(); } else if (name.equals("device")) { this.device = new CodeableReference(); return this.device; } else if (name.equals("recorder")) { this.recorder = new Reference(); return this.recorder; } else if (name.equals("reason")) { return addReason(); } else if (name.equals("courseOfTherapyType")) { this.courseOfTherapyType = new CodeableConcept(); return this.courseOfTherapyType; } else if (name.equals("insurance")) { return addInsurance(); } else if (name.equals("note")) { return addNote(); } else if (name.equals("dose")) { this.dose = new MedicationRequestDoseComponent(); return this.dose; } else if (name.equals("dispenseRequest")) { this.dispenseRequest = new MedicationRequestDispenseRequestComponent(); return this.dispenseRequest; } else if (name.equals("substitution")) { this.substitution = new MedicationRequestSubstitutionComponent(); return this.substitution; } else if (name.equals("eventHistory")) { return addEventHistory(); } else return super.addChild(name); } public String fhirType() { return "MedicationRequest"; } public MedicationRequest copy() { MedicationRequest dst = new MedicationRequest(); copyValues(dst); return dst; } public void copyValues(MedicationRequest dst) { super.copyValues(dst); if (identifier != null) { dst.identifier = new ArrayList<Identifier>(); for (Identifier i : identifier) dst.identifier.add(i.copy()); }; if (basedOn != null) { dst.basedOn = new ArrayList<Reference>(); for (Reference i : basedOn) dst.basedOn.add(i.copy()); }; dst.priorPrescription = priorPrescription == null ? null : priorPrescription.copy(); dst.groupIdentifier = groupIdentifier == null ? null : groupIdentifier.copy(); dst.status = status == null ? null : status.copy(); dst.statusReason = statusReason == null ? null : statusReason.copy(); dst.statusChanged = statusChanged == null ? null : statusChanged.copy(); dst.intent = intent == null ? null : intent.copy(); if (category != null) { dst.category = new ArrayList<CodeableConcept>(); for (CodeableConcept i : category) dst.category.add(i.copy()); }; dst.priority = priority == null ? null : priority.copy(); dst.doNotPerform = doNotPerform == null ? null : doNotPerform.copy(); dst.medication = medication == null ? null : medication.copy(); dst.subject = subject == null ? null : subject.copy(); if (informationSource != null) { dst.informationSource = new ArrayList<Reference>(); for (Reference i : informationSource) dst.informationSource.add(i.copy()); }; dst.encounter = encounter == null ? null : encounter.copy(); if (supportingInformation != null) { dst.supportingInformation = new ArrayList<Reference>(); for (Reference i : supportingInformation) dst.supportingInformation.add(i.copy()); }; dst.authoredOn = authoredOn == null ? null : authoredOn.copy(); dst.requester = requester == null ? null : requester.copy(); dst.reported = reported == null ? null : reported.copy(); dst.performerType = performerType == null ? null : performerType.copy(); if (performer != null) { dst.performer = new ArrayList<Reference>(); for (Reference i : performer) dst.performer.add(i.copy()); }; dst.device = device == null ? null : device.copy(); dst.recorder = recorder == null ? null : recorder.copy(); if (reason != null) { dst.reason = new ArrayList<CodeableReference>(); for (CodeableReference i : reason) dst.reason.add(i.copy()); }; dst.courseOfTherapyType = courseOfTherapyType == null ? null : courseOfTherapyType.copy(); if (insurance != null) { dst.insurance = new ArrayList<Reference>(); for (Reference i : insurance) dst.insurance.add(i.copy()); }; if (note != null) { dst.note = new ArrayList<Annotation>(); for (Annotation i : note) dst.note.add(i.copy()); }; dst.dose = dose == null ? null : dose.copy(); dst.dispenseRequest = dispenseRequest == null ? null : dispenseRequest.copy(); dst.substitution = substitution == null ? null : substitution.copy(); if (eventHistory != null) { dst.eventHistory = new ArrayList<Reference>(); for (Reference i : eventHistory) dst.eventHistory.add(i.copy()); }; } protected MedicationRequest typedCopy() { return copy(); } @Override public boolean equalsDeep(Base other_) { if (!super.equalsDeep(other_)) return false; if (!(other_ instanceof MedicationRequest)) return false; MedicationRequest o = (MedicationRequest) other_; return compareDeep(identifier, o.identifier, true) && compareDeep(basedOn, o.basedOn, true) && compareDeep(priorPrescription, o.priorPrescription, true) && compareDeep(groupIdentifier, o.groupIdentifier, true) && compareDeep(status, o.status, true) && compareDeep(statusReason, o.statusReason, true) && compareDeep(statusChanged, o.statusChanged, true) && compareDeep(intent, o.intent, true) && compareDeep(category, o.category, true) && compareDeep(priority, o.priority, true) && compareDeep(doNotPerform, o.doNotPerform, true) && compareDeep(medication, o.medication, true) && compareDeep(subject, o.subject, true) && compareDeep(informationSource, o.informationSource, true) && compareDeep(encounter, o.encounter, true) && compareDeep(supportingInformation, o.supportingInformation, true) && compareDeep(authoredOn, o.authoredOn, true) && compareDeep(requester, o.requester, true) && compareDeep(reported, o.reported, true) && compareDeep(performerType, o.performerType, true) && compareDeep(performer, o.performer, true) && compareDeep(device, o.device, true) && compareDeep(recorder, o.recorder, true) && compareDeep(reason, o.reason, true) && compareDeep(courseOfTherapyType, o.courseOfTherapyType, true) && compareDeep(insurance, o.insurance, true) && compareDeep(note, o.note, true) && compareDeep(dose, o.dose, true) && compareDeep(dispenseRequest, o.dispenseRequest, true) && compareDeep(substitution, o.substitution, true) && compareDeep(eventHistory, o.eventHistory, true) ; } @Override public boolean equalsShallow(Base other_) { if (!super.equalsShallow(other_)) return false; if (!(other_ instanceof MedicationRequest)) return false; MedicationRequest o = (MedicationRequest) other_; return compareValues(status, o.status, true) && compareValues(statusChanged, o.statusChanged, true) && compareValues(intent, o.intent, true) && compareValues(priority, o.priority, true) && compareValues(doNotPerform, o.doNotPerform, true) && compareValues(authoredOn, o.authoredOn, true) && compareValues(reported, o.reported, true); } public boolean isEmpty() { return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(identifier, basedOn, priorPrescription , groupIdentifier, status, statusReason, statusChanged, intent, category, priority , doNotPerform, medication, subject, informationSource, encounter, supportingInformation , authoredOn, requester, reported, performerType, performer, device, recorder , reason, courseOfTherapyType, insurance, note, dose, dispenseRequest, substitution , eventHistory); } @Override public ResourceType getResourceType() { return ResourceType.MedicationRequest; } /** * Search parameter: <b>authoredon</b> * <p> * Description: <b>Return prescriptions written on this date</b><br> * Type: <b>date</b><br> * Path: <b>MedicationRequest.authoredOn</b><br> * </p> */ @SearchParamDefinition(name="authoredon", path="MedicationRequest.authoredOn", description="Return prescriptions written on this date", type="date" ) public static final String SP_AUTHOREDON = "authoredon"; /** * <b>Fluent Client</b> search parameter constant for <b>authoredon</b> * <p> * Description: <b>Return prescriptions written on this date</b><br> * Type: <b>date</b><br> * Path: <b>MedicationRequest.authoredOn</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.DateClientParam AUTHOREDON = new ca.uhn.fhir.rest.gclient.DateClientParam(SP_AUTHOREDON); /** * Search parameter: <b>category</b> * <p> * Description: <b>Returns prescriptions with different categories</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.category</b><br> * </p> */ @SearchParamDefinition(name="category", path="MedicationRequest.category", description="Returns prescriptions with different categories", type="token" ) public static final String SP_CATEGORY = "category"; /** * <b>Fluent Client</b> search parameter constant for <b>category</b> * <p> * Description: <b>Returns prescriptions with different categories</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.category</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam CATEGORY = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_CATEGORY); /** * Search parameter: <b>combo-date</b> * <p> * Description: <b>Returns medication request to be administered on a specific date or within a date range</b><br> * Type: <b>date</b><br> * Path: <b>MedicationRequest.dose.dosageInstruction.timing.event | (MedicationRequest.dose.dosageInstruction.timing.repeat.bounds as Period)</b><br> * </p> */ @SearchParamDefinition(name="combo-date", path="MedicationRequest.dose.dosageInstruction.timing.event | (MedicationRequest.dose.dosageInstruction.timing.repeat.bounds as Period)", description="Returns medication request to be administered on a specific date or within a date range", type="date" ) public static final String SP_COMBO_DATE = "combo-date"; /** * <b>Fluent Client</b> search parameter constant for <b>combo-date</b> * <p> * Description: <b>Returns medication request to be administered on a specific date or within a date range</b><br> * Type: <b>date</b><br> * Path: <b>MedicationRequest.dose.dosageInstruction.timing.event | (MedicationRequest.dose.dosageInstruction.timing.repeat.bounds as Period)</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.DateClientParam COMBO_DATE = new ca.uhn.fhir.rest.gclient.DateClientParam(SP_COMBO_DATE); /** * Search parameter: <b>intended-dispenser</b> * <p> * Description: <b>Returns prescriptions intended to be dispensed by this Organization</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.dispenseRequest.dispenser</b><br> * </p> */ @SearchParamDefinition(name="intended-dispenser", path="MedicationRequest.dispenseRequest.dispenser", description="Returns prescriptions intended to be dispensed by this Organization", type="reference", target={Organization.class } ) public static final String SP_INTENDED_DISPENSER = "intended-dispenser"; /** * <b>Fluent Client</b> search parameter constant for <b>intended-dispenser</b> * <p> * Description: <b>Returns prescriptions intended to be dispensed by this Organization</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.dispenseRequest.dispenser</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam INTENDED_DISPENSER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_INTENDED_DISPENSER); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:intended-dispenser</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_INTENDED_DISPENSER = new ca.uhn.fhir.model.api.Include("MedicationRequest:intended-dispenser").toLocked(); /** * Search parameter: <b>intended-performer</b> * <p> * Description: <b>Returns the intended performer of the administration of the medication request</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.performer</b><br> * </p> */ @SearchParamDefinition(name="intended-performer", path="MedicationRequest.performer", description="Returns the intended performer of the administration of the medication request", type="reference", target={CareTeam.class, DeviceDefinition.class, HealthcareService.class, Organization.class, Patient.class, Practitioner.class, PractitionerRole.class, RelatedPerson.class } ) public static final String SP_INTENDED_PERFORMER = "intended-performer"; /** * <b>Fluent Client</b> search parameter constant for <b>intended-performer</b> * <p> * Description: <b>Returns the intended performer of the administration of the medication request</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.performer</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam INTENDED_PERFORMER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_INTENDED_PERFORMER); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:intended-performer</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_INTENDED_PERFORMER = new ca.uhn.fhir.model.api.Include("MedicationRequest:intended-performer").toLocked(); /** * Search parameter: <b>intended-performertype</b> * <p> * Description: <b>Returns requests for a specific type of performer</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.performerType</b><br> * </p> */ @SearchParamDefinition(name="intended-performertype", path="MedicationRequest.performerType", description="Returns requests for a specific type of performer", type="token" ) public static final String SP_INTENDED_PERFORMERTYPE = "intended-performertype"; /** * <b>Fluent Client</b> search parameter constant for <b>intended-performertype</b> * <p> * Description: <b>Returns requests for a specific type of performer</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.performerType</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam INTENDED_PERFORMERTYPE = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_INTENDED_PERFORMERTYPE); /** * Search parameter: <b>intent</b> * <p> * Description: <b>Returns prescriptions with different intents</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.intent</b><br> * </p> */ @SearchParamDefinition(name="intent", path="MedicationRequest.intent", description="Returns prescriptions with different intents", type="token" ) public static final String SP_INTENT = "intent"; /** * <b>Fluent Client</b> search parameter constant for <b>intent</b> * <p> * Description: <b>Returns prescriptions with different intents</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.intent</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam INTENT = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_INTENT); /** * Search parameter: <b>priority</b> * <p> * Description: <b>Returns prescriptions with different priorities</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.priority</b><br> * </p> */ @SearchParamDefinition(name="priority", path="MedicationRequest.priority", description="Returns prescriptions with different priorities", type="token" ) public static final String SP_PRIORITY = "priority"; /** * <b>Fluent Client</b> search parameter constant for <b>priority</b> * <p> * Description: <b>Returns prescriptions with different priorities</b><br> * Type: <b>token</b><br> * Path: <b>MedicationRequest.priority</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam PRIORITY = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_PRIORITY); /** * Search parameter: <b>requester</b> * <p> * Description: <b>Returns prescriptions prescribed by this prescriber</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.requester</b><br> * </p> */ @SearchParamDefinition(name="requester", path="MedicationRequest.requester", description="Returns prescriptions prescribed by this prescriber", type="reference", providesMembershipIn={ @ca.uhn.fhir.model.api.annotation.Compartment(name="Base FHIR compartment definition for Practitioner") }, target={Device.class, Organization.class, Patient.class, Practitioner.class, PractitionerRole.class, RelatedPerson.class } ) public static final String SP_REQUESTER = "requester"; /** * <b>Fluent Client</b> search parameter constant for <b>requester</b> * <p> * Description: <b>Returns prescriptions prescribed by this prescriber</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.requester</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam REQUESTER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_REQUESTER); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:requester</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_REQUESTER = new ca.uhn.fhir.model.api.Include("MedicationRequest:requester").toLocked(); /** * Search parameter: <b>subject</b> * <p> * Description: <b>The identity of a patient to list orders for</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.subject</b><br> * </p> */ @SearchParamDefinition(name="subject", path="MedicationRequest.subject", description="The identity of a patient to list orders for", type="reference", providesMembershipIn={ @ca.uhn.fhir.model.api.annotation.Compartment(name="Base FHIR compartment definition for Patient") }, target={Group.class, Patient.class } ) public static final String SP_SUBJECT = "subject"; /** * <b>Fluent Client</b> search parameter constant for <b>subject</b> * <p> * Description: <b>The identity of a patient to list orders for</b><br> * Type: <b>reference</b><br> * Path: <b>MedicationRequest.subject</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam SUBJECT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_SUBJECT); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:subject</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_SUBJECT = new ca.uhn.fhir.model.api.Include("MedicationRequest:subject").toLocked(); /** * Search parameter: <b>code</b> * <p> * Description: <b>Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance * [Condition](condition.html): Code for the condition * [DeviceRequest](devicerequest.html): Code for what is being requested/ordered * [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result * [FamilyMemberHistory](familymemberhistory.html): A search by a condition code * [List](list.html): What the purpose of this list is * [Medication](medication.html): Returns medications for a specific code * [MedicationAdministration](medicationadministration.html): Return administrations of this medication code * [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code * [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code * [MedicationUsage](medicationusage.html): Return statements of this medication code * [Observation](observation.html): The code of the observation type * [Procedure](procedure.html): A code to identify a procedure </b><br> * Type: <b>token</b><br> * Path: <b>AllergyIntolerance.code | AllergyIntolerance.reaction.substance | Condition.code | DeviceRequest.code.concept | DiagnosticReport.code | FamilyMemberHistory.condition.code | List.code | Medication.code | MedicationAdministration.medication.concept | MedicationDispense.medication.concept | MedicationRequest.medication.concept | MedicationUsage.medication.concept | Observation.code | Procedure.code</b><br> * </p> */ @SearchParamDefinition(name="code", path="AllergyIntolerance.code | AllergyIntolerance.reaction.substance | Condition.code | DeviceRequest.code.concept | DiagnosticReport.code | FamilyMemberHistory.condition.code | List.code | Medication.code | MedicationAdministration.medication.concept | MedicationDispense.medication.concept | MedicationRequest.medication.concept | MedicationUsage.medication.concept | Observation.code | Procedure.code", description="Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Condition](condition.html): Code for the condition\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [List](list.html): What the purpose of this list is\r\n* [Medication](medication.html): Returns medications for a specific code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationUsage](medicationusage.html): Return statements of this medication code\r\n* [Observation](observation.html): The code of the observation type\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n", type="token" ) public static final String SP_CODE = "code"; /** * <b>Fluent Client</b> search parameter constant for <b>code</b> * <p> * Description: <b>Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance * [Condition](condition.html): Code for the condition * [DeviceRequest](devicerequest.html): Code for what is being requested/ordered * [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result * [FamilyMemberHistory](familymemberhistory.html): A search by a condition code * [List](list.html): What the purpose of this list is * [Medication](medication.html): Returns medications for a specific code * [MedicationAdministration](medicationadministration.html): Return administrations of this medication code * [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code * [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code * [MedicationUsage](medicationusage.html): Return statements of this medication code * [Observation](observation.html): The code of the observation type * [Procedure](procedure.html): A code to identify a procedure </b><br> * Type: <b>token</b><br> * Path: <b>AllergyIntolerance.code | AllergyIntolerance.reaction.substance | Condition.code | DeviceRequest.code.concept | DiagnosticReport.code | FamilyMemberHistory.condition.code | List.code | Medication.code | MedicationAdministration.medication.concept | MedicationDispense.medication.concept | MedicationRequest.medication.concept | MedicationUsage.medication.concept | Observation.code | Procedure.code</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam CODE = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_CODE); /** * Search parameter: <b>identifier</b> * <p> * Description: <b>Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): External ids for this item * [CarePlan](careplan.html): External Ids for this plan * [CareTeam](careteam.html): External Ids for this team * [Composition](composition.html): Version-independent identifier for the Composition * [Condition](condition.html): A unique identifier of the condition record * [Consent](consent.html): Identifier for this record (external references) * [DetectedIssue](detectedissue.html): Unique id for the detected issue * [DeviceRequest](devicerequest.html): Business identifier for request/order * [DiagnosticReport](diagnosticreport.html): An identifier for the report * [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents * [DocumentReference](documentreference.html): Identifier of the attachment binary * [Encounter](encounter.html): Identifier(s) by which this encounter is known * [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare * [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier * [Goal](goal.html): External Ids for this goal * [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID * [Immunization](immunization.html): Business identifier * [List](list.html): Business identifier * [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier * [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier * [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier * [MedicationUsage](medicationusage.html): Return statements with this external identifier * [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier * [Observation](observation.html): The unique id for a particular observation * [Procedure](procedure.html): A unique identifier for a procedure * [RiskAssessment](riskassessment.html): Unique identifier for the assessment * [ServiceRequest](servicerequest.html): Identifiers assigned to this order * [SupplyDelivery](supplydelivery.html): External identifier * [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest * [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier </b><br> * Type: <b>token</b><br> * Path: <b>AllergyIntolerance.identifier | CarePlan.identifier | CareTeam.identifier | Composition.identifier | Condition.identifier | Consent.identifier | DetectedIssue.identifier | DeviceRequest.identifier | DiagnosticReport.identifier | DocumentManifest.masterIdentifier | DocumentManifest.identifier | DocumentReference.identifier | Encounter.identifier | EpisodeOfCare.identifier | FamilyMemberHistory.identifier | Goal.identifier | ImagingStudy.identifier | Immunization.identifier | List.identifier | MedicationAdministration.identifier | MedicationDispense.identifier | MedicationRequest.identifier | MedicationUsage.identifier | NutritionOrder.identifier | Observation.identifier | Procedure.identifier | RiskAssessment.identifier | ServiceRequest.identifier | SupplyDelivery.identifier | SupplyRequest.identifier | VisionPrescription.identifier</b><br> * </p> */ @SearchParamDefinition(name="identifier", path="AllergyIntolerance.identifier | CarePlan.identifier | CareTeam.identifier | Composition.identifier | Condition.identifier | Consent.identifier | DetectedIssue.identifier | DeviceRequest.identifier | DiagnosticReport.identifier | DocumentManifest.masterIdentifier | DocumentManifest.identifier | DocumentReference.identifier | Encounter.identifier | EpisodeOfCare.identifier | FamilyMemberHistory.identifier | Goal.identifier | ImagingStudy.identifier | Immunization.identifier | List.identifier | MedicationAdministration.identifier | MedicationDispense.identifier | MedicationRequest.identifier | MedicationUsage.identifier | NutritionOrder.identifier | Observation.identifier | Procedure.identifier | RiskAssessment.identifier | ServiceRequest.identifier | SupplyDelivery.identifier | SupplyRequest.identifier | VisionPrescription.identifier", description="Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [Composition](composition.html): Version-independent identifier for the Composition\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [DocumentReference](documentreference.html): Identifier of the attachment binary\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Goal](goal.html): External Ids for this goal\r\n* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID\r\n* [Immunization](immunization.html): Business identifier\r\n* [List](list.html): Business identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationUsage](medicationusage.html): Return statements with this external identifier\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [ServiceRequest](servicerequest.html): Identifiers assigned to this order\r\n* [SupplyDelivery](supplydelivery.html): External identifier\r\n* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n", type="token" ) public static final String SP_IDENTIFIER = "identifier"; /** * <b>Fluent Client</b> search parameter constant for <b>identifier</b> * <p> * Description: <b>Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): External ids for this item * [CarePlan](careplan.html): External Ids for this plan * [CareTeam](careteam.html): External Ids for this team * [Composition](composition.html): Version-independent identifier for the Composition * [Condition](condition.html): A unique identifier of the condition record * [Consent](consent.html): Identifier for this record (external references) * [DetectedIssue](detectedissue.html): Unique id for the detected issue * [DeviceRequest](devicerequest.html): Business identifier for request/order * [DiagnosticReport](diagnosticreport.html): An identifier for the report * [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents * [DocumentReference](documentreference.html): Identifier of the attachment binary * [Encounter](encounter.html): Identifier(s) by which this encounter is known * [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare * [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier * [Goal](goal.html): External Ids for this goal * [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID * [Immunization](immunization.html): Business identifier * [List](list.html): Business identifier * [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier * [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier * [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier * [MedicationUsage](medicationusage.html): Return statements with this external identifier * [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier * [Observation](observation.html): The unique id for a particular observation * [Procedure](procedure.html): A unique identifier for a procedure * [RiskAssessment](riskassessment.html): Unique identifier for the assessment * [ServiceRequest](servicerequest.html): Identifiers assigned to this order * [SupplyDelivery](supplydelivery.html): External identifier * [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest * [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier </b><br> * Type: <b>token</b><br> * Path: <b>AllergyIntolerance.identifier | CarePlan.identifier | CareTeam.identifier | Composition.identifier | Condition.identifier | Consent.identifier | DetectedIssue.identifier | DeviceRequest.identifier | DiagnosticReport.identifier | DocumentManifest.masterIdentifier | DocumentManifest.identifier | DocumentReference.identifier | Encounter.identifier | EpisodeOfCare.identifier | FamilyMemberHistory.identifier | Goal.identifier | ImagingStudy.identifier | Immunization.identifier | List.identifier | MedicationAdministration.identifier | MedicationDispense.identifier | MedicationRequest.identifier | MedicationUsage.identifier | NutritionOrder.identifier | Observation.identifier | Procedure.identifier | RiskAssessment.identifier | ServiceRequest.identifier | SupplyDelivery.identifier | SupplyRequest.identifier | VisionPrescription.identifier</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam IDENTIFIER = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_IDENTIFIER); /** * Search parameter: <b>patient</b> * <p> * Description: <b>Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for * [CarePlan](careplan.html): Who the care plan is for * [CareTeam](careteam.html): Who care team is for * [ClinicalImpression](clinicalimpression.html): Patient assessed * [Composition](composition.html): Who and/or what the composition is about * [Condition](condition.html): Who has the condition? * [Consent](consent.html): Who the consent applies to * [DetectedIssue](detectedissue.html): Associated patient * [DeviceRequest](devicerequest.html): Individual the service is ordered for * [DeviceUsage](deviceusage.html): Search by patient who used / uses the device * [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient * [DocumentManifest](documentmanifest.html): The subject of the set of documents * [DocumentReference](documentreference.html): Who/what is the subject of the document * [Encounter](encounter.html): The patient present at the encounter * [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care * [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for * [Flag](flag.html): The identity of a subject to list flags for * [Goal](goal.html): Who this goal is intended for * [ImagingStudy](imagingstudy.html): Who the study is about * [Immunization](immunization.html): The patient for the vaccination record * [List](list.html): If all resources have the same subject * [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for * [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for * [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient * [MedicationUsage](medicationusage.html): Returns statements for a specific patient. * [NutritionOrder](nutritionorder.html): The identity of the individual or set of individuals who requires the diet, formula or nutritional supplement * [Observation](observation.html): The subject that the observation is about (if patient) * [Procedure](procedure.html): Search by subject - a patient * [RiskAssessment](riskassessment.html): Who/what does assessment apply to? * [ServiceRequest](servicerequest.html): Search by subject - a patient * [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied * [SupplyRequest](supplyrequest.html): The patient or subject for whom the supply is destined * [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for </b><br> * Type: <b>reference</b><br> * Path: <b>AllergyIntolerance.patient | CarePlan.subject.where(resolve() is Patient) | CareTeam.subject.where(resolve() is Patient) | ClinicalImpression.subject.where(resolve() is Patient) | Composition.subject.where(resolve() is Patient) | Condition.subject.where(resolve() is Patient) | Consent.subject.where(resolve() is Patient) | DetectedIssue.subject | DeviceRequest.subject.where(resolve() is Patient) | DeviceUsage.patient | DiagnosticReport.subject.where(resolve() is Patient) | DocumentManifest.subject.where(resolve() is Patient) | DocumentReference.subject.where(resolve() is Patient) | Encounter.subject.where(resolve() is Patient) | EpisodeOfCare.patient | FamilyMemberHistory.patient | Flag.subject.where(resolve() is Patient) | Goal.subject.where(resolve() is Patient) | ImagingStudy.subject.where(resolve() is Patient) | Immunization.patient | List.subject.where(resolve() is Patient) | MedicationAdministration.subject.where(resolve() is Patient) | MedicationDispense.subject.where(resolve() is Patient) | MedicationRequest.subject.where(resolve() is Patient) | MedicationUsage.subject.where(resolve() is Patient) | NutritionOrder.subject.where(resolve() is Patient) | Observation.subject.where(resolve() is Patient) | Procedure.subject.where(resolve() is Patient) | RiskAssessment.subject.where(resolve() is Patient) | ServiceRequest.subject.where(resolve() is Patient) | SupplyDelivery.patient | SupplyRequest.deliverFor | VisionPrescription.patient</b><br> * </p> */ @SearchParamDefinition(name="patient", path="AllergyIntolerance.patient | CarePlan.subject.where(resolve() is Patient) | CareTeam.subject.where(resolve() is Patient) | ClinicalImpression.subject.where(resolve() is Patient) | Composition.subject.where(resolve() is Patient) | Condition.subject.where(resolve() is Patient) | Consent.subject.where(resolve() is Patient) | DetectedIssue.subject | DeviceRequest.subject.where(resolve() is Patient) | DeviceUsage.patient | DiagnosticReport.subject.where(resolve() is Patient) | DocumentManifest.subject.where(resolve() is Patient) | DocumentReference.subject.where(resolve() is Patient) | Encounter.subject.where(resolve() is Patient) | EpisodeOfCare.patient | FamilyMemberHistory.patient | Flag.subject.where(resolve() is Patient) | Goal.subject.where(resolve() is Patient) | ImagingStudy.subject.where(resolve() is Patient) | Immunization.patient | List.subject.where(resolve() is Patient) | MedicationAdministration.subject.where(resolve() is Patient) | MedicationDispense.subject.where(resolve() is Patient) | MedicationRequest.subject.where(resolve() is Patient) | MedicationUsage.subject.where(resolve() is Patient) | NutritionOrder.subject.where(resolve() is Patient) | Observation.subject.where(resolve() is Patient) | Procedure.subject.where(resolve() is Patient) | RiskAssessment.subject.where(resolve() is Patient) | ServiceRequest.subject.where(resolve() is Patient) | SupplyDelivery.patient | SupplyRequest.deliverFor | VisionPrescription.patient", description="Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who the care plan is for\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ClinicalImpression](clinicalimpression.html): Patient assessed\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [Condition](condition.html): Who has the condition?\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [DeviceUsage](deviceusage.html): Search by patient who used / uses the device\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [Encounter](encounter.html): The patient present at the encounter\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [List](list.html): If all resources have the same subject\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationUsage](medicationusage.html): Returns statements for a specific patient.\r\n* [NutritionOrder](nutritionorder.html): The identity of the individual or set of individuals who requires the diet, formula or nutritional supplement\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [ServiceRequest](servicerequest.html): Search by subject - a patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [SupplyRequest](supplyrequest.html): The patient or subject for whom the supply is destined\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n", type="reference", target={BiologicallyDerivedProduct.class, Device.class, Group.class, Location.class, Medication.class, NutritionProduct.class, Organization.class, Patient.class, Practitioner.class, Procedure.class, Substance.class } ) public static final String SP_PATIENT = "patient"; /** * <b>Fluent Client</b> search parameter constant for <b>patient</b> * <p> * Description: <b>Multiple Resources: * [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for * [CarePlan](careplan.html): Who the care plan is for * [CareTeam](careteam.html): Who care team is for * [ClinicalImpression](clinicalimpression.html): Patient assessed * [Composition](composition.html): Who and/or what the composition is about * [Condition](condition.html): Who has the condition? * [Consent](consent.html): Who the consent applies to * [DetectedIssue](detectedissue.html): Associated patient * [DeviceRequest](devicerequest.html): Individual the service is ordered for * [DeviceUsage](deviceusage.html): Search by patient who used / uses the device * [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient * [DocumentManifest](documentmanifest.html): The subject of the set of documents * [DocumentReference](documentreference.html): Who/what is the subject of the document * [Encounter](encounter.html): The patient present at the encounter * [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care * [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for * [Flag](flag.html): The identity of a subject to list flags for * [Goal](goal.html): Who this goal is intended for * [ImagingStudy](imagingstudy.html): Who the study is about * [Immunization](immunization.html): The patient for the vaccination record * [List](list.html): If all resources have the same subject * [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for * [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for * [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient * [MedicationUsage](medicationusage.html): Returns statements for a specific patient. * [NutritionOrder](nutritionorder.html): The identity of the individual or set of individuals who requires the diet, formula or nutritional supplement * [Observation](observation.html): The subject that the observation is about (if patient) * [Procedure](procedure.html): Search by subject - a patient * [RiskAssessment](riskassessment.html): Who/what does assessment apply to? * [ServiceRequest](servicerequest.html): Search by subject - a patient * [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied * [SupplyRequest](supplyrequest.html): The patient or subject for whom the supply is destined * [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for </b><br> * Type: <b>reference</b><br> * Path: <b>AllergyIntolerance.patient | CarePlan.subject.where(resolve() is Patient) | CareTeam.subject.where(resolve() is Patient) | ClinicalImpression.subject.where(resolve() is Patient) | Composition.subject.where(resolve() is Patient) | Condition.subject.where(resolve() is Patient) | Consent.subject.where(resolve() is Patient) | DetectedIssue.subject | DeviceRequest.subject.where(resolve() is Patient) | DeviceUsage.patient | DiagnosticReport.subject.where(resolve() is Patient) | DocumentManifest.subject.where(resolve() is Patient) | DocumentReference.subject.where(resolve() is Patient) | Encounter.subject.where(resolve() is Patient) | EpisodeOfCare.patient | FamilyMemberHistory.patient | Flag.subject.where(resolve() is Patient) | Goal.subject.where(resolve() is Patient) | ImagingStudy.subject.where(resolve() is Patient) | Immunization.patient | List.subject.where(resolve() is Patient) | MedicationAdministration.subject.where(resolve() is Patient) | MedicationDispense.subject.where(resolve() is Patient) | MedicationRequest.subject.where(resolve() is Patient) | MedicationUsage.subject.where(resolve() is Patient) | NutritionOrder.subject.where(resolve() is Patient) | Observation.subject.where(resolve() is Patient) | Procedure.subject.where(resolve() is Patient) | RiskAssessment.subject.where(resolve() is Patient) | ServiceRequest.subject.where(resolve() is Patient) | SupplyDelivery.patient | SupplyRequest.deliverFor | VisionPrescription.patient</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam PATIENT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_PATIENT); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:patient</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_PATIENT = new ca.uhn.fhir.model.api.Include("MedicationRequest:patient").toLocked(); /** * Search parameter: <b>encounter</b> * <p> * Description: <b>Multiple Resources: * [MedicationAdministration](medicationadministration.html): Return administrations that share this encounter * [MedicationRequest](medicationrequest.html): Return prescriptions with this encounter identifier </b><br> * Type: <b>reference</b><br> * Path: <b>MedicationAdministration.encounter | MedicationRequest.encounter</b><br> * </p> */ @SearchParamDefinition(name="encounter", path="MedicationAdministration.encounter | MedicationRequest.encounter", description="Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): Return administrations that share this encounter\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this encounter identifier\r\n", type="reference", providesMembershipIn={ @ca.uhn.fhir.model.api.annotation.Compartment(name="Base FHIR compartment definition for Encounter") }, target={Encounter.class } ) public static final String SP_ENCOUNTER = "encounter"; /** * <b>Fluent Client</b> search parameter constant for <b>encounter</b> * <p> * Description: <b>Multiple Resources: * [MedicationAdministration](medicationadministration.html): Return administrations that share this encounter * [MedicationRequest](medicationrequest.html): Return prescriptions with this encounter identifier </b><br> * Type: <b>reference</b><br> * Path: <b>MedicationAdministration.encounter | MedicationRequest.encounter</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam ENCOUNTER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_ENCOUNTER); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:encounter</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_ENCOUNTER = new ca.uhn.fhir.model.api.Include("MedicationRequest:encounter").toLocked(); /** * Search parameter: <b>medication</b> * <p> * Description: <b>Multiple Resources: * [MedicationAdministration](medicationadministration.html): Return administrations of this medication reference * [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine resource * [MedicationRequest](medicationrequest.html): Return prescriptions for this medication reference * [MedicationUsage](medicationusage.html): Return statements of this medication reference </b><br> * Type: <b>reference</b><br> * Path: <b>MedicationAdministration.medication.reference | MedicationDispense.medication.reference | MedicationRequest.medication.reference | MedicationUsage.medication.reference</b><br> * </p> */ @SearchParamDefinition(name="medication", path="MedicationAdministration.medication.reference | MedicationDispense.medication.reference | MedicationRequest.medication.reference | MedicationUsage.medication.reference", description="Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication reference\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine resource\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions for this medication reference\r\n* [MedicationUsage](medicationusage.html): Return statements of this medication reference\r\n", type="reference" ) public static final String SP_MEDICATION = "medication"; /** * <b>Fluent Client</b> search parameter constant for <b>medication</b> * <p> * Description: <b>Multiple Resources: * [MedicationAdministration](medicationadministration.html): Return administrations of this medication reference * [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine resource * [MedicationRequest](medicationrequest.html): Return prescriptions for this medication reference * [MedicationUsage](medicationusage.html): Return statements of this medication reference </b><br> * Type: <b>reference</b><br> * Path: <b>MedicationAdministration.medication.reference | MedicationDispense.medication.reference | MedicationRequest.medication.reference | MedicationUsage.medication.reference</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam MEDICATION = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(SP_MEDICATION); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "<b>MedicationRequest:medication</b>". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_MEDICATION = new ca.uhn.fhir.model.api.Include("MedicationRequest:medication").toLocked(); /** * Search parameter: <b>status</b> * <p> * Description: <b>Multiple Resources: * [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified) * [MedicationDispense](medicationdispense.html): Returns dispenses with a specified dispense status * [MedicationRequest](medicationrequest.html): Status of the prescription * [MedicationUsage](medicationusage.html): Return statements that match the given status </b><br> * Type: <b>token</b><br> * Path: <b>MedicationAdministration.status | MedicationDispense.status | MedicationRequest.status | MedicationUsage.status</b><br> * </p> */ @SearchParamDefinition(name="status", path="MedicationAdministration.status | MedicationDispense.status | MedicationRequest.status | MedicationUsage.status", description="Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses with a specified dispense status\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationUsage](medicationusage.html): Return statements that match the given status\r\n", type="token" ) public static final String SP_STATUS = "status"; /** * <b>Fluent Client</b> search parameter constant for <b>status</b> * <p> * Description: <b>Multiple Resources: * [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified) * [MedicationDispense](medicationdispense.html): Returns dispenses with a specified dispense status * [MedicationRequest](medicationrequest.html): Status of the prescription * [MedicationUsage](medicationusage.html): Return statements that match the given status </b><br> * Type: <b>token</b><br> * Path: <b>MedicationAdministration.status | MedicationDispense.status | MedicationRequest.status | MedicationUsage.status</b><br> * </p> */ public static final ca.uhn.fhir.rest.gclient.TokenClientParam STATUS = new ca.uhn.fhir.rest.gclient.TokenClientParam(SP_STATUS); }
39202c6d837238b87b4f3580210edf4a4d3988b0
40f56a15ec4559ef6e70a76a0d9734366d6d00d2
/first/src/basic/booleans.java
21f47e6da946b57622982c50a8cd65530b8eb823
[]
no_license
yeyuning1/JavaBasic
0853d5a581a70a1b77477b6030b35cfe910f93dc
22133ed16276d4a4f9e87334588521174dddeea6
refs/heads/master
2020-07-13T21:54:04.134996
2019-08-29T13:39:59
2019-08-29T13:39:59
205,161,718
0
0
null
null
null
null
UTF-8
Java
false
false
368
java
package basic; public class booleans { public static void main(String[] args) { // boolean b = 5 < 3; // boolean result = b && (5 / 0 > 0); // boolean result = b || (5 / 1 > 0); // System.out.println(result); int n = -100; int x = n >= 0 ? n : -n; // (n if n >= 0 else -n) System.out.println(x); } }
219239b450991c940309c3ef5fd873ef3860ba1c
7023bf9b35ed66da4942368f2672a6c3843eff99
/vhrserver/vhr-web/src/main/java/org/javaboy/vhr/controller/sys/basic/JobLevelController.java
da1084e01ff22871490f48dee32fa3a0010c152e
[]
no_license
xiadefeng/vhr
6a2fff6756543b3daabbd14c7983a0f8fa524bd2
bc275021aed821fbec913bab11d671ba5e75a540
refs/heads/master
2023-01-30T05:45:20.651278
2020-12-17T08:14:48
2020-12-17T08:14:48
322,226,107
0
0
null
null
null
null
UTF-8
Java
false
false
2,224
java
package org.javaboy.vhr.controller.sys.basic; import org.javaboy.vhr.bean.JobLevel; import org.javaboy.vhr.bean.RespBean; import org.javaboy.vhr.service.JobLevelService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** * @Author: xdf * @Description: 基础信息设置——职称管理 * */ @RestController @RequestMapping("/system/basic/jobLevel") public class JobLevelController { @Autowired JobLevelService jobLevelService; /** * 查询职称 * * @return 职称信息集合 */ @GetMapping("/") public List<JobLevel> getAllJobLevels() { return jobLevelService.getAllJobLevels(); } /** * 添加职称 * * @param jobLevel 职称信息 * @return 响应结果 */ @PostMapping("/") public RespBean addJobLevel(@RequestBody JobLevel jobLevel) { if (jobLevelService.addJobLevel(jobLevel) == 1) { return RespBean.ok("添加成功!"); } return RespBean.error("添加失败!"); } /** * 更新职称 * * @param jobLevel 职称信息 * @return 响应结果 */ @PutMapping("/") public RespBean updateJobLevel(@RequestBody JobLevel jobLevel) { if (jobLevelService.updateJobLevel(jobLevel) == 1) { return RespBean.ok("更新成功!"); } return RespBean.error("更新失败!"); } /** * 删除职称 * * @param id 职称 id * @return 相应结果 */ @DeleteMapping("/{id}") public RespBean deleteJobLevel(@PathVariable Integer id) { if (jobLevelService.deleteJobLevel(id) == 1) { return RespBean.ok("删除成功!"); } return RespBean.error("删除失败!"); } /** * 删除多条职称 * * @param ids 多条职称 Id * @return 相应结果 */ @DeleteMapping("/") public RespBean deleteManyJobLevel(Integer[] ids) { if (jobLevelService.deleteManyJobLevel(ids) == ids.length) { return RespBean.ok("删除成功!"); } return RespBean.error("删除失败!"); } }
debd67dde4df8cfda035e2085f61d7657ece894b
b7e91d1f4e35c7131b84db898105724b6b4d14e4
/Projetos/Versão Atual/vaucangraph-modules/br.ufms.vaucangraph.app/src/main/java/br/ufms/vaucangraph/app/outline/OutlineViewModel.java
f609b19bb56f0bdb7dea53a876ac16133ac3d3be
[ "Apache-2.0" ]
permissive
Alex-Vieira/VaucangraphFx
ddc4dd62733b06a46ec85b8bf1f3ebf914e5c2b0
4109f24fb25140d98d61bdb00efda528d2d2c5b8
refs/heads/master
2020-03-27T14:10:37.426744
2019-08-04T00:07:53
2019-08-04T00:07:53
146,648,103
0
0
null
null
null
null
UTF-8
Java
false
false
133
java
package br.ufms.vaucangraph.app.outline; import de.saxsys.mvvmfx.ViewModel; public class OutlineViewModel implements ViewModel { }
d5f1ec2a2b9a6210d79cb1d85fc1ffb696049319
c41476abff940bf2ad976ab75f2dd04c3d17a62a
/src/TwoPointers/_2_RemoveDuplicatesFromSortedArray.java
073437845ce9ee09e7ee10ad145175a38e8ab54b
[]
no_license
csal90/depaul-algorithms
b0fa80c7e75e3c6e8ff6dbced89778f806e2e1e7
22c5ba8d47d89846cdaf607eecb0b284d8e35405
refs/heads/master
2023-06-03T05:21:59.591839
2021-07-02T17:24:09
2021-07-02T17:24:09
379,291,931
0
0
null
null
null
null
UTF-8
Java
false
false
198
java
package TwoPointers; public class _2_RemoveDuplicatesFromSortedArray { public static void main(String[] args) { } public int removeDuplicates(int[] nums) { return -1; } }
74d45b6e93184a5910e45711a07d1c1ba7aa5e4f
7f7ab18704e38038acdacf90e623e0e4e99ae1bd
/src/com/maldworth/toodledo/response/models/Task.java
8518fe184e739c60d4c0b98a24cd37273f9feabd
[ "BSD-2-Clause-Views", "BSD-2-Clause" ]
permissive
summraznboi/maDoHttpServices
80cf02c3002e7621e36bc7f6f9ea1ed29991cb79
bd45a6ae2d2a9e37d2d24c0758c6c759477812a6
refs/heads/master
2020-12-24T12:59:25.956387
2010-02-13T03:49:57
2010-02-13T03:49:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,631
java
package com.maldworth.toodledo.response.models; import com.maldworth.toodledo.enums.Priority; import com.maldworth.toodledo.enums.Reminder; import com.maldworth.toodledo.enums.Repeat; import com.maldworth.toodledo.enums.Status; public class Task { private long _id; private long _parent; private int _children; private String _title; private String _tag; private long _folder; private long _contextId; private String _context; private long _goalId; private String _goal; private long _added; private long _modified; private long _startDate; private String _dueDateModifier; private long _dueDate; private long _dueTime; private long _startTime; private long _completed; private Reminder _reminder; private Repeat _repeat; private String _repeatAdv; private Status _status; private int _star; private Priority _priority; private int _length; private int _timerOnFor; private int _timer; private String _note; /** * @return The task's unique ID */ public long getId() { return _id; } /** * @return This is used to Pro accounts that have access to subtasks. The parent ID is unique to the parent task that owns this subtask. */ public long getParent() { return _parent; } /** * @return The number of subtasks that this current task is the parent of. */ public int getChildren() { return _children; } /** * @return The title of the task. */ public String getTitle() { return _title; } /** * @return A tag that are associated with the task. */ public String getTag() { return _tag; } /** * @return The ID of the folder that this task belongs to. */ public long getFolder() { return _folder; } public long getContextId() { return _contextId; } public String getContext() { return _context; } public long getGoalId() { return _goalId; } public String getGoal() { return _goal; } public long getAdded() { return _added; } public long getModified() { return _modified; } public long getStartDate() { return _startDate; } public long getCompleted() { return _completed; } public String getDueDateModifier() { return _dueDateModifier; } public long getDueDate() { return _dueDate; } public long getDueTime() { return _dueTime; } public long getStartTime() { return _startTime; } public Reminder getReminder() { return _reminder; } public Repeat getRepeat() { return _repeat; } public String getRepeatAdv() { return _repeatAdv; } public Status getStatus() { return _status; } public int getStar() { return _star; } public Priority getPriority() { return _priority; } public int getLength() { return _length; } public int getTimerOnFor() { return _timerOnFor; } public int getTimer() { return _timer; } public String getNote() { return _note; } public void setId(long id) { _id = id; } public void setParent(long parent) { _parent = parent; } public void setChildren(int children) { _children = children; } public void setTitle(String title) { _title = title; } public void setTag(String tag) { _tag = tag; } public void setFolder(long folder) { _folder = folder; } public void setContextId(long contextId) { _contextId = contextId; } public void setContext(String context) { _context = context; } public void setGoalId(long goalId) { _goalId = goalId; } public void setGoal(String goal) { _goal = goal; } public void setAdded(long added) { _added = added; } public void setModified(long modified) { _modified = modified; } public void setStartDate(long startDate) { _startDate = startDate; } public void setCompleted(long completed) { _completed = completed; } public void setDueDateModifier(String dueDateModifier) { _dueDateModifier = dueDateModifier; } public void setDueDate(long dueDate) { _dueDate = dueDate; } public void setDueTime(long dueTime) { _dueTime = dueTime; } public void setStartTime(long startTime) { _startTime = startTime; } public void setReminder(Reminder reminder) { _reminder = reminder; } public void setRepeat(Repeat repeat) { _repeat = repeat; } public void setRepeatAdv(String repeatAdv) { _repeatAdv = repeatAdv; } public void setStatus(Status status) { _status = status; } public void setStar(int star) { _star = star; } public void setPriority(Priority priority) { _priority = priority; } public void setLength(int length) { _length = length; } public void setTimerOnFor(int timerOnFor) { _timerOnFor = timerOnFor; } public void setTimer(int timer) { _timer = timer; } public void setNote(String note) { _note = note; } }
096f53dabf585797f7f65a22295b64712e2e2670
249fbe3a4fb13d00573ef70fdceada06206d404f
/TigerDB/src/main/java/cn/ittiger/database/SQLBuilder.java
b2c2ce93d2b6c39c4552c3f00f207b775b8f6e48
[]
no_license
huyongli/TigerTnGou
fadd301defdedab4909ab8207a85dc1e1da0a2c6
10684fb60afe0c69bbc289c8e3fc694325f04fd0
refs/heads/master
2020-09-20T18:02:09.283071
2016-08-21T15:09:43
2016-08-21T15:09:43
66,202,432
7
2
null
null
null
null
UTF-8
Java
false
false
13,714
java
package cn.ittiger.database; import java.util.Collection; import java.util.Iterator; import java.util.LinkedHashMap; import cn.ittiger.database.bean.BindSQL; import cn.ittiger.database.bean.EntityTable; import cn.ittiger.database.bean.Property; import cn.ittiger.database.manager.EntityTableManager; import cn.ittiger.database.manager.FieldTypeManager; import cn.ittiger.database.util.ValueUtil; /** * SQL语句构造器 * Author: hyl * Time: 2015-8-17下午9:51:37 */ public class SQLBuilder { /** * 获取当前实体类的表名 * Author: hyl * Time: 2015-8-14下午9:25:51 * @param mClass * @return */ public static String getTableName(Class<?> mClass) { cn.ittiger.database.annotation.Table anno = mClass.getAnnotation(cn.ittiger.database.annotation.Table.class); if(anno == null || ValueUtil.isEmpty(anno.name())) { return mClass.getSimpleName(); } return anno.name(); } /** * 根据实体对象构造建表语句 * Author: hyl * Time: 2015-8-15下午1:22:05 * @param entity * @return */ public static String getCreateTableSQL(EntityTable entity) { StringBuilder createTableSql = new StringBuilder(); createTableSql.append("CREATE TABLE IF NOT EXISTS "); createTableSql.append(entity.getTableName());//表名 createTableSql.append("("); createTableSql.append(entity.getPrimaryKey().getColumn());//主键字段 createTableSql.append(" "); createTableSql.append(FieldTypeManager.getColumnTypeValue(entity.getPrimaryKey().getField()));//主键字段类型 createTableSql.append(" PRIMARY KEY ");//主键 if(entity.getPrimaryKey().isAutoGenerate()) { createTableSql.append(" AUTOINCREMENT "); } LinkedHashMap<String, Property> columnMap = entity.getColumnMap(); for(String key : columnMap.keySet()) { createTableSql.append(","); createTableSql.append(columnMap.get(key).getColumn()).append(" ");//字段名 createTableSql.append(FieldTypeManager.getColumnTypeValue(columnMap.get(key).getField()));//字段类型 if(!ValueUtil.isEmpty(columnMap.get(key).getDefaultValue())) { createTableSql.append(" ").append("DEFAULT ").append(columnMap.get(key).getDefaultValue()); } } createTableSql.append(")"); return createTableSql.toString(); } /** * 检查表是否存在语句 * Author: hyl * Time: 2015-8-16下午8:59:37 * @param tableName * @return */ public static String getCheckTableExistSQL(String tableName) { return "SELECT COUNT(*) TOTALCOUNT FROM SQLITE_MASTER WHERE UPPER(TYPE) ='TABLE' AND NAME = '" + tableName + "'"; } /** * 查询某个表中所有的字段 * Author: hyl * Time: 2015-8-23下午7:19:21 * @param tableName * @return */ public static String getTableAllColumnSQL(String tableName) { return "SELECT * FROM " + tableName + " LIMIT 0"; } /** * 更新表结构SQL(SQLite不支持删除列) * Author: hyl * Time: 2015-8-23下午7:58:50 * @param tableName * @param property * @return */ public static String getAlterTableSQL(String tableName, Property property) { return "ALTER TABLE " + tableName + " ADD COLUMN " + property.getColumn() + " " + FieldTypeManager.getColumnTypeValue(property.getField()) + (ValueUtil.isEmpty(property.getDefaultValue()) ? "" : " DEFAULT " + property.getDefaultValue()); } /** * 构造插入语句 * Author: hyl * Time: 2015-8-16下午9:05:10 * @param object 要插入的实体对象 * @return */ public static <T> BindSQL getInsertSQL(T entity) { EntityTable entityTable = EntityTableManager.getEntityTable(entity); boolean isAutoIncrement = entityTable.getPrimaryKey().isAutoGenerate(); String tableName = entityTable.getTableName(); Collection<Property> propertys = entityTable.getColumnMap().values(); Object[] bindArgs = null; if(isAutoIncrement) {//如果为自增长主键,则在构造插入语句的时候不需要构造主键列,数据库会自动为自增长主键设置值 bindArgs = new Object[propertys.size()]; } else { bindArgs = new Object[propertys.size() + 1]; } StringBuilder sqlBuilder = new StringBuilder(); StringBuilder argsBuidler = new StringBuilder(); int i = 0; sqlBuilder.append("INSERT INTO ").append(tableName).append("("); argsBuidler.append(" VALUES("); if(!isAutoIncrement) {//主键不是自增长列,需要自己设置主键值 sqlBuilder.append(entityTable.getPrimaryKey().getColumn()).append(",");//主键 argsBuidler.append("?").append(","); if(ValueUtil.isEmpty(entityTable.getPrimaryKey().getValue(entity))) {//判断主键值是否为空 throw new IllegalArgumentException("非自增长主键必须手动设置主键值"); } bindArgs[i++] = entityTable.getPrimaryKey().getValue(entity); } Iterator<Property> iterator = propertys.iterator(); Property property; while(iterator.hasNext()) { property = iterator.next(); sqlBuilder.append(property.getColumn()); argsBuidler.append("?"); bindArgs[i++] = getPropertyValue(property, entity); sqlBuilder.append(","); argsBuidler.append(","); } sqlBuilder.deleteCharAt(sqlBuilder.length() - 1); argsBuidler.deleteCharAt(argsBuidler.length() - 1); sqlBuilder.append(")"); argsBuidler.append(")"); sqlBuilder.append(argsBuidler); BindSQL bindSQL = new BindSQL(sqlBuilder.toString()); bindSQL.setBindArgs(bindArgs); return bindSQL; } private static <T> String getPropertyValue(Property property, T entity) { String value = null; Object obj = property.getValue(entity);//此值的类型为多种基本类型,如果为int、long 直接赋值给value会运行报错 switch(FieldTypeManager.getFieldType(property.getField())) { case FieldTypeManager.BASE_TYPE_DOUBLE: case FieldTypeManager.BASE_TYPE_FLOAT: case FieldTypeManager.BASE_TYPE_INT: case FieldTypeManager.BASE_TYPE_LONG: case FieldTypeManager.BASE_TYPE_SHORT: if(Double.parseDouble(obj.toString()) == 0 && !ValueUtil.isEmpty(property.getDefaultValue())) { value = property.getDefaultValue(); } else { value = obj.toString(); } break; case FieldTypeManager.BASE_TYPE_BOOLEAN: if(Boolean.parseBoolean(obj.toString()) == false && !ValueUtil.isEmpty(property.getDefaultValue())) { value = property.getDefaultValue(); } else { value = obj.toString(); } break; case FieldTypeManager.BASE_TYPE_CHAR: case FieldTypeManager.BASE_TYPE_STRING: case FieldTypeManager.BASE_TYPE_DATE: if(!ValueUtil.isEmpty(obj)) { value = obj.toString(); } else { if(!ValueUtil.isEmpty(property.getDefaultValue())) { value = property.getDefaultValue(); } } break; } return value; } /** * 构造删除语句 * Author: hyl * Time: 2015-8-17下午9:52:26 * @param entity 要删除的实体 * @return */ public static <T> BindSQL getDeleteSQL(T entity) { EntityTable entityTable = EntityTableManager.getEntityTable(entity); StringBuilder sqlBuilder = new StringBuilder(); StringBuilder argsBuilder = new StringBuilder(); sqlBuilder.append("DELETE FROM ").append(entityTable.getTableName()); sqlBuilder.append(" WHERE ").append(entityTable.getPrimaryKey().getColumn()).append(" = ?"); if(ValueUtil.isEmpty(entityTable.getPrimaryKey().getValue(entity))) { throw new IllegalArgumentException("未设置要删除实体的主键"); } argsBuilder.append(entityTable.getPrimaryKey().getValue(entity)); return new BindSQL(sqlBuilder.toString(), new String[]{argsBuilder.toString()}); } /** * 构造要删除的语句 * @author: huylee * @time: 2015-8-20下午10:12:25 * @param mClass 要删除的实体类 * @param primaryKeyValue 要删除的实体的主键,主键为空,则删除所有的数据 * @return */ public static BindSQL getDeleteSQL(Class<?> mClass, String primaryKeyValue) { EntityTable entityTable = EntityTableManager.getEntityTable(mClass); StringBuilder sqlBuilder = new StringBuilder(); sqlBuilder.append("DELETE FROM ").append(entityTable.getTableName()); String[] bindArgs = null; if(!ValueUtil.isEmpty(primaryKeyValue)) { sqlBuilder.append(" WHERE ").append(entityTable.getPrimaryKey().getColumn()).append(" = ?"); bindArgs = new String[]{primaryKeyValue}; } return new BindSQL(sqlBuilder.toString(), bindArgs); } /** * 构造更新数据 * @author: huylee * @time: 2015-8-20下午10:44:56 * @param entity * @return */ public static <T> BindSQL getUpdateSQL(T entity) { EntityTable entityTable = EntityTableManager.getEntityTable(entity); if(ValueUtil.isEmpty(entityTable.getPrimaryKey().getValue(entity))) { throw new IllegalArgumentException("未设置要删除实体的主键"); } StringBuilder sqlBuilder = new StringBuilder(); sqlBuilder.append("UPDATE "); sqlBuilder.append(entityTable.getTableName()); sqlBuilder.append(" SET "); Collection<Property> propertys = entityTable.getColumnMap().values(); Object[] bindArgs = new Object[propertys.size() + 1]; int i = 0; Iterator<Property> iterator = propertys.iterator(); Property property; while(iterator.hasNext()) { property = iterator.next(); sqlBuilder.append(property.getColumn()); sqlBuilder.append(" = ?,"); bindArgs[i++] = property.getValue(entity); } sqlBuilder.deleteCharAt(sqlBuilder.length() - 1); sqlBuilder.append(" WHERE "); sqlBuilder.append(entityTable.getPrimaryKey().getColumn()); sqlBuilder.append(" = ?"); bindArgs[i++] = entityTable.getPrimaryKey().getValue(entity); return new BindSQL(sqlBuilder.toString(), bindArgs); } /** * 查询指定实体的全部数据 * @author: huylee * @time: 2015-8-20下午10:57:29 * @param mClass 要查询的实体类 * @return */ public static String getQuerySQL(Class<?> mClass) { String tableName = EntityTableManager.getEntityTable(mClass).getTableName(); return "SELECT * FROM " + tableName; } /** * 查询指定实体的全部数据 * @author: huylee * @time: 2015-8-20下午10:57:29 * @param mClass 要查询的实体类 * @return */ public static BindSQL getQuerySQLById(Class<?> mClass, String primaryValue) { EntityTable entityTable = EntityTableManager.getEntityTable(mClass); StringBuilder sqlBuilder = new StringBuilder(); sqlBuilder.append("SELECT * FROM "); sqlBuilder.append(entityTable.getTableName()); sqlBuilder.append(" WHERE "); sqlBuilder.append(entityTable.getPrimaryKey().getColumn()); sqlBuilder.append(" = ?"); return new BindSQL(sqlBuilder.toString(), new String[]{primaryValue}); } /** * 查询指定实体的全部数据 * Author: hyl * Time: 2015-8-21上午11:27:37 * @param mClass 要查询的实体类 * @param whereClause where子句 * @param whereArgs where字句绑定参数 * @return */ public static BindSQL getQuerySQL(Class<?> mClass, String whereClause, String[] whereArgs) { EntityTable entityTable = EntityTableManager.getEntityTable(mClass); StringBuilder sqlBuilder = new StringBuilder(); sqlBuilder.append("SELECT * FROM "); sqlBuilder.append(entityTable.getTableName()); sqlBuilder.append(" WHERE "); sqlBuilder.append(whereClause); return new BindSQL(sqlBuilder.toString(), whereArgs); } /** * 查询实体类数据总条数 * Author: hyl * Time: 2015-8-21上午11:00:55 * @param mClass * @return */ public static BindSQL getTotalSQL(Class<?> mClass, String whereClause, String[] whereArgs) { String tableName = EntityTableManager.getEntityTable(mClass).getTableName(); String sql = "SELECT COUNT(*) TOTALCOUNT FROM " + tableName; if(!ValueUtil.isEmpty(whereClause)) { sql = sql + " WHERE " + whereClause; } return new BindSQL(sql, whereArgs); } /** * 获取分页查询语句 * Author: hyl * Time: 2015-8-21上午11:40:41 * @param mClass 要查询的实体类 * @param curPage 查询的当前页码 * @param pageSize 每页数据数 * @return */ public static BindSQL getQueryPageSQL(Class<?> mClass, int curPage, int pageSize) { EntityTable entityTable = EntityTableManager.getEntityTable(mClass); StringBuilder sqlBuilder = new StringBuilder(); sqlBuilder.append("SELECT * FROM "); sqlBuilder.append(entityTable.getTableName()); sqlBuilder.append(" LIMIT ? OFFSET ? * ? "); String cur = String.valueOf(curPage - 1); String size = String.valueOf(pageSize); return new BindSQL(sqlBuilder.toString(), new String[]{size, cur, size}); } /** * 获取分页查询语句 * Author: hyl * Time: 2015-8-21上午11:49:40 * @param mClass 要查询的实体类 * @param whereClause 查询where子句 * @param whereArgs where子句参数 * @param curPage 查询的当前页码 * @param pageSize 每页数据数 * @return */ public static BindSQL getQueryPageSQL(Class<?> mClass,String whereClause, String[] whereArgs, int curPage, int pageSize) { EntityTable entityTable = EntityTableManager.getEntityTable(mClass); StringBuilder sqlBuilder = new StringBuilder(); sqlBuilder.append("SELECT * FROM "); sqlBuilder.append(entityTable.getTableName()); if(!ValueUtil.isEmpty(whereClause)) { sqlBuilder.append(" WHERE "); sqlBuilder.append(whereClause); } sqlBuilder.append(" LIMIT ? OFFSET ? * ? "); String cur = String.valueOf(curPage - 1); String size = String.valueOf(pageSize); int length = whereArgs == null ? 0 : whereArgs.length; String[] newWhereArgs = new String[length + 3]; if(length > 0) { System.arraycopy(whereArgs, 0, newWhereArgs, 0, whereArgs.length); } newWhereArgs[length] = size; newWhereArgs[length + 1] = cur; newWhereArgs[length + 2] = size; return new BindSQL(sqlBuilder.toString(), newWhereArgs); } }
5ea59e5b401d9071e2ce109bd872eca3320065c0
289a3eadd2a26fc7f82ca0d58a29902b753dcee3
/craft3editor/src/com/hiveworkshop/wc3/jworldedit/wipdesign/units/meta/SourceLocation.java
ca4b36e5b82eef1185832e97cd3645e54fc33397
[ "MIT" ]
permissive
Retera/ReterasModelStudio
e6cfe3099eed1c6426dff34f2f965ca040597d34
2b7c9f0c223874381074f4e04f82442f03a8ec53
refs/heads/master
2023-08-30T19:26:33.917185
2023-06-02T03:00:14
2023-06-02T03:00:14
39,873,368
59
18
null
2021-05-30T21:14:35
2015-07-29T04:32:41
Java
UTF-8
Java
false
false
117
java
package com.hiveworkshop.wc3.jworldedit.wipdesign.units.meta; public @interface SourceLocation { String value(); }
709ee87540af0e9141ff7781bafb058a5b88fcb1
a3b752b26902e04ebd1349daa21a14e25526952e
/src/fr/valentinle/logiciel_coiffure/model/observer/DashboardListener.java
d59dbf58737c367a9dc4fd7a86b3800a44e852d3
[]
no_license
ValentinLe/logiciel_coiffure
660a80f9c928cc754625cc887608a85017d5c8b4
1395d952961b392d24358a4f14dc6fa8dfdbc824
refs/heads/main
2023-08-16T10:19:55.794935
2021-09-23T19:22:16
2021-09-23T19:22:16
374,419,335
0
0
null
null
null
null
UTF-8
Java
false
false
219
java
package fr.valentinle.logiciel_coiffure.model.observer; public interface DashboardListener { public void clientsListHasChanged(); public void clientHasChanged(); public void factureCreated(); }
035e3c6128fb5c7cc3e5964ee9a0621ed4eedc31
19f7e40c448029530d191a262e5215571382bf9f
/decompiled/instagram/sources/p000X/C31951aI.java
2ff2f3915c1b67bb966b906dd6501094a383ed2f
[]
no_license
stanvanrooy/decompiled-instagram
c1fb553c52e98fd82784a3a8a17abab43b0f52eb
3091a40af7accf6c0a80b9dda608471d503c4d78
refs/heads/master
2022-12-07T22:31:43.155086
2020-08-26T03:42:04
2020-08-26T03:42:04
283,347,288
18
1
null
null
null
null
UTF-8
Java
false
false
1,071
java
package p000X; /* renamed from: X.1aI reason: invalid class name and case insensitive filesystem */ public final class C31951aI { public static C31961aJ parseFromJson(C13080hr r3) { C31961aJ r2 = new C31961aJ(); if (r3.A0g() != C13120hv.START_OBJECT) { r3.A0f(); return null; } while (r3.A0p() != C13120hv.END_OBJECT) { String A0i = r3.A0i(); r3.A0p(); if ("music_asset_info".equals(A0i)) { r2.A00 = C44311vw.parseFromJson(r3); } else if ("music_consumption_info".equals(A0i)) { r2.A01 = C44321vy.parseFromJson(r3); } r3.A0f(); } return r2; } public static void A00(C13460iZ r1, C31961aJ r2) { r1.A0T(); if (r2.A00 != null) { r1.A0d("music_asset_info"); C44311vw.A00(r1, r2.A00); } if (r2.A01 != null) { r1.A0d("music_consumption_info"); C44321vy.A00(r1, r2.A01); } r1.A0Q(); } }
6cffffbee58bb10983b7a4e63fef729a1eff75d9
e06ce387bbc95f70ac390ff8b04c98c983b5a7a6
/1TRIMESTRE/java_functions/src/exercises35to50/Exercise47.java
25bb524a49e03bc940ba1fa60aef0c46843c5ae4
[]
no_license
przdavid/PROG
9e7b37464bc0cde38448bf313a321334b8cd1844
3a84977d89f18c33add1efeaae9f6075202a672c
refs/heads/master
2021-07-23T11:07:10.265550
2021-01-22T07:55:04
2021-01-22T07:55:04
238,075,167
0
0
null
null
null
null
UTF-8
Java
false
false
1,866
java
package exercises35to50; /** * <p>Ejercicio 47 del tema 8 del libro <em>Aprende Java con ejercicios</em>.</p> * @author David Pérez Ruiz */ public class Exercise47 { public static void main(String[] args) { // Variables de prueba int[] arrayExample1 = {6, 2, 5, 0, 1}; int[] arrayExample2 = {3, 7, 9}; int[] arrayExample3 = {8}; int[] arrayExample4= {}; // Informar del programa System.out.println("╔══════════════════════════════════════════════════════════╗"); System.out.println("║ Programa que convierte un array de números a una cadena. ║"); System.out.println("╚══════════════════════════════════════════════════════════╝"); // Mostrar resultado System.out.printf("El array 1 se convierte en %s\n", convertArrayIntoString(arrayExample1)); System.out.printf("El array 2 se convierte en %s\n", convertArrayIntoString(arrayExample2)); System.out.printf("El array 3 se convierte en %s\n", convertArrayIntoString(arrayExample3)); System.out.printf("El array 4 se convierte en %s\n", convertArrayIntoString(arrayExample4)); } /** * <p><strong>Función:</strong></br>convertArrayIntoString</p> * <p><strong>Propósito:</strong></br>convierte un array de números enteros en un String.</p> * @param array Array de números enteros. * @return <em>array</em> convertido en cadena de caracteres. */ public static String convertArrayIntoString(int[] array) { String stringArray = ""; for (int i = 0; i < array.length; i++) { stringArray += Integer.toString(array[i]); } return stringArray; } }
8720eaa14a6d8917f52b84856cbed800ff1e1be9
be639c0869a785d5ff0c6cce230277eba3283e6c
/WEAK PASSWORD EXCEPTION/src/UserBO.java
33302540c2bf004e1fe747a57c00c6d1c8e8ef95
[]
no_license
vignesh-gupta/All-Java-Project
9293bfb7110daddff6c0e53aca09206c84d703ba
159e71a6d85194e70fc3ca3af4b220d64be58de5
refs/heads/master
2023-05-13T14:58:18.042309
2021-06-07T07:56:16
2021-06-07T07:56:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
946
java
@SuppressWarnings("serial") public class UserBO extends Throwable { static void validate(User u)throws WeakPasswordException{ int d=0,a=0,s=0; boolean is=true; if(u.getPassword().length()>=8 && u.getPassword().length()<=20){ for(int i=0; i<u.getPassword().length(); i++){ if(Character.isDigit(u.getPassword().charAt(i))){ d++; } else if(Character.isAlphabetic(u.getPassword().charAt(i))){ a++; } else { s++; } } if(a<1 || d<1 || s<1){ is=false; } } else is=false; if(is){} else throw new WeakPasswordException("Your password is weak"); } }
687e62196e6547dfd3a649a9c5add3521722c328
ab2adb23393260210754859747ba00ebe621cdfc
/AzureAddressAllocator/src/net/azurewebsites/thehen101/azureaddressallocator/azure/AllocationManager.java
9d0d29e9b1d11b0f11f9ae37d2a59a752d10924e
[ "MIT" ]
permissive
thehen101/AzureAddressAllocator
12eb2452dbff18ea8772ace01f0a0fc3ffb6e427
05332647e4f6b81efae8345b2c125c3124cbe31f
refs/heads/master
2022-08-04T13:48:43.760063
2020-05-27T20:57:43
2020-05-27T20:57:43
265,531,571
1
0
null
null
null
null
UTF-8
Java
false
false
2,642
java
package net.azurewebsites.thehen101.azureaddressallocator.azure; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.HashMap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import net.azurewebsites.thehen101.azureaddressallocator.Allocator; /** * @author h * @since 27 May 2020 * */ public class AllocationManager { private static final Logger LOGGER = LoggerFactory.getLogger(AllocationManager.class); private int maxIPAddresses; private int allocatedIPAddresses; private final Allocator allocator; private final ArrayDeque<String> unallocatedIPPool = new ArrayDeque<String>(); private final HashMap<String, String> allocationMap = new HashMap<String, String>(); // username to private IP public AllocationManager(final Allocator allocator) { this.allocator = allocator; this.unallocatedIPPool.addAll(this.cidrToIPRange(allocator.getAzureSettings().getIpRange())); this.allocatedIPAddresses = 0; this.maxIPAddresses = this.unallocatedIPPool.size(); LOGGER.debug(this.maxIPAddresses + " private IP addresses ready for use"); LOGGER.info("AllocationManager initialised"); } public void allocatePublicIP() { } public int getAllocatedAddressCount() { return this.allocatedIPAddresses; } public int getAllocatedAddressCountMax() { return this.maxIPAddresses; } private ArrayList<String> cidrToIPRange(final String cidr) throws ExceptionInInitializerError { if (!cidr.contains("/") || cidr.split("\\.").length != 4) throw new ExceptionInInitializerError("Invalid CIDR notation!"); final String[] split = cidr.split("/"); final String[] startIPString = split[0].split("\\."); int startIP = 0; // convert String IP to big-endian integer for (int i = 0; i < 4; i++) { final int b = new Integer(startIPString[i]); if (b < 0 || b > 255) throw new ExceptionInInitializerError("Invalid IP address"); startIP |= ((b & 0xFF) << (24 - (8 * i))); } final int bits = new Integer(split[1]); if (bits < 24 || bits > 32) throw new ExceptionInInitializerError("Azure does not support IP ranges of this size!"); final int size = 1 << (32 - bits); // Math.pow(2, 32 - bits); final ArrayList<String> ipAddresses = new ArrayList<String>(size); for (int i = 0; i < size; i++) { final int ip = startIP + i; final StringBuilder sb = new StringBuilder(); for (int j = 0; j < 4; j++) { sb.append(((byte) (ip >> 24 - (8 * j))) & 0xFF); if (j != 3) sb.append("."); } ipAddresses.add(sb.toString()); } return ipAddresses; } }
77af0a8d664458fa9289a980dbd87fed64223d15
cba543b732a9a5ad73ddb2e9b20125159f0e1b2e
/sikuli_ide/src/main/java/org/jdesktop/swingx/JXRadioGroup.java
9a5e80c9334e2d5d9182ff846e9af3dde860b680
[]
no_license
wsh231314/IntelligentOperation
e6266e1ae79fe93f132d8900ee484a4db0da3b24
a12aca5c5c67e6a2dddcd2d8420ca8a64af476f2
refs/heads/master
2020-04-05T13:31:55.376669
2017-07-28T05:59:05
2017-07-28T05:59:05
94,863,918
1
2
null
2017-07-27T02:44:17
2017-06-20T07:45:10
Java
UTF-8
Java
false
false
10,531
java
/* * $Id: JXRadioGroup.java 4158 2012-02-03 18:29:40Z kschaefe $ * * Copyright 2006 Sun Microsystems, Inc., 4150 Network Circle, * Santa Clara, California 95054, U.S.A. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ package org.jdesktop.swingx; import org.jdesktop.beans.JavaBean; import javax.swing.*; import javax.swing.event.EventListenerList; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.util.ArrayList; import java.util.Enumeration; import java.util.List; /** * <p> * {@code JXRadioGroup} is a group of radio buttons that functions as a unit. It * is similar in concept to a {@link JComboBox} in functionality, but can offer * a better presentation for a small number of choices. {@code JXRadioGroup} * should be used in preference to {@code JComboBox} when the number of choices * is small (less than six) or the choices are verbose. * </p> * <p> * Notes: * <ol> * <li>Enabling and disabling the JXRadioGroup will enable/disable all of the * child buttons inside the JXRadioGroup.</li> * <li> * If the generic type parameter of JXRadioGroup is a subclass of * {@link AbstractButton}, then the buttons will be added "as is" to the * container. If the generic type is anything else, buttons will be created as * {@link JRadioButton} objects, and the button text will be set by calling * toString() on the value object.</li> * <li> * Alternatively, if you want to configure the buttons individually, construct * the JXRadioGroup normally, and then call {@link #getChildButton(int)} or * {@link #getChildButton(Object)} and configure the buttons.</li> * </ol> * </p> * <p> * TODO back with a model (possibly reuse of extend {@link ComboBoxModel} * </p> * * @author Amy Fowler * @author Noel Grandin * @version 1.0 */ @JavaBean public class JXRadioGroup<T> extends JPanel { private static final long serialVersionUID = 3257285842266567986L; private ButtonGroup buttonGroup; private final List<T> values = new ArrayList<T>(); private ActionSelectionListener actionHandler; /** * Create a default JXRadioGroup with a default layout axis of {@link BoxLayout#X_AXIS}. */ public JXRadioGroup() { setLayout(new BoxLayout(this, BoxLayout.X_AXIS)); buttonGroup = new ButtonGroup(); } /** * Create a default JXRadioGroup with a default layout axis of {@link BoxLayout#X_AXIS}. * * @param radioValues the list of values used to create the group. */ public JXRadioGroup(T[] radioValues) { this(); for (int i = 0; i < radioValues.length; i++) { add(radioValues[i]); } } /** * Convenience factory method. * Reduces code clutter when dealing with generics. * * @param radioValues the list of values used to create the group. */ public static <T> JXRadioGroup<T> create(T[] radioValues) { return new JXRadioGroup<T>(radioValues); } /** * Set the layout axis of the radio group. * * @param axis values from {@link BoxLayout}. */ public void setLayoutAxis(int axis) { setLayout(new BoxLayout(this, axis)); } /** * Sets the values backing this group. This replaces the current set of * values with the new set. * * @param radioValues the new backing values for this group */ public void setValues(T[] radioValues) { clearAll(); for (int i = 0; i < radioValues.length; i++) { add(radioValues[i]); } } private void clearAll() { values.clear(); buttonGroup = new ButtonGroup(); // remove all the child components removeAll(); } /** * You can use this method to manually add your own AbstractButton objects, provided you declared * the class as <code>JXRadioGroup&lt;JRadioButton&gt;</code>. */ public void add(T radioValue) { if (values.contains(radioValue)) { throw new IllegalArgumentException("cannot add the same value twice " + radioValue); } if (radioValue instanceof AbstractButton) { values.add(radioValue); addButton((AbstractButton) radioValue); } else { values.add(radioValue); // Note: the "quote + object" trick here allows null values addButton(new JRadioButton("" + radioValue)); } } private void addButton(AbstractButton button) { buttonGroup.add(button); super.add(button); if (actionHandler == null) { actionHandler = new ActionSelectionListener(); } button.addActionListener(actionHandler); button.addItemListener(actionHandler); } private class ActionSelectionListener implements ActionListener, ItemListener { @Override public void actionPerformed(ActionEvent e) { fireActionEvent(e); } @Override public void itemStateChanged(ItemEvent e) { fireActionEvent(null); } } /** * Gets the currently selected button. * * @return the currently selected button * @see #getSelectedValue() */ public AbstractButton getSelectedButton() { final ButtonModel selectedModel = buttonGroup.getSelection(); final AbstractButton children[] = getButtonComponents(); for (int i = 0; i < children.length; i++) { AbstractButton button = children[i]; if (button.getModel() == selectedModel) { return button; } } return null; } private AbstractButton[] getButtonComponents() { final Component[] children = getComponents(); final List<AbstractButton> buttons = new ArrayList<AbstractButton>(); for (int i = 0; i < children.length; i++) { if (children[i] instanceof AbstractButton) { buttons.add((AbstractButton) children[i]); } } return buttons.toArray(new AbstractButton[buttons.size()]); } private int getSelectedIndex() { final ButtonModel selectedModel = buttonGroup.getSelection(); final Component children[] = getButtonComponents(); for (int i = 0; i < children.length; i++) { AbstractButton button = (AbstractButton) children[i]; if (button.getModel() == selectedModel) { return i; } } return -1; } /** * The currently selected value. * * @return the current value */ public T getSelectedValue() { final int index = getSelectedIndex(); return (index < 0 || index >= values.size()) ? null : values.get(index); } /** * Selects the supplied value. * * @param value the value to select */ public void setSelectedValue(T value) { final int index = values.indexOf(value); AbstractButton button = getButtonComponents()[index]; button.setSelected(true); } /** * Retrieve the child button by index. */ public AbstractButton getChildButton(int index) { return getButtonComponents()[index]; } /** * Retrieve the child button that represents this value. */ public AbstractButton getChildButton(T value) { final int index = values.indexOf(value); return getButtonComponents()[index]; } /** * Get the number of child buttons. */ public int getChildButtonCount() { return getButtonComponents().length; } /** * Adds an <code>ActionListener</code>. * <p> * The <code>ActionListener</code> will receive an <code>ActionEvent</code> * when a selection has been made. * * @param l the <code>ActionListener</code> that is to be notified * @see #setSelectedValue(Object) */ public void addActionListener(ActionListener l) { listenerList.add(ActionListener.class, l); } /** * Removes an <code>ActionListener</code>. * * @param l the <code>ActionListener</code> to remove */ public void removeActionListener(ActionListener l) { listenerList.remove(ActionListener.class, l); } /** * Returns an array of all the <code>ActionListener</code>s added * to this JRadioGroup with addActionListener(). * * @return all of the <code>ActionListener</code>s added or an empty * array if no listeners have been added */ public ActionListener[] getActionListeners() { return listenerList.getListeners(ActionListener.class); } /** * Notifies all listeners that have registered interest for notification on * this event type. * * @param e the event to pass to the listeners * @see EventListenerList */ protected void fireActionEvent(ActionEvent e) { for (ActionListener l : getActionListeners()) { l.actionPerformed(e); } } /** * Enable/disable all of the child buttons * * @see JComponent#setEnabled(boolean) */ @Override public void setEnabled(boolean enabled) { super.setEnabled(enabled); for (Enumeration<AbstractButton> en = buttonGroup.getElements(); en.hasMoreElements(); ) { final AbstractButton button = en.nextElement(); /* We don't want to enable a button where the action does not * permit it. */ if (enabled && button.getAction() != null && !button.getAction().isEnabled()) { // do nothing } else { button.setEnabled(enabled); } } } }
14e1ba24ba8a2c5b4341ef360046d1eb828947d3
720361bf227c116bbc5fe31194e8c3f32393bd21
/IdeaProjects/gbless2_calc/src/com/company/Main.java
aeaef759f466973e367ae65095e485af8e5d607e
[]
no_license
zimingv/git-repo
85441da737aadaf9ab10f8d6bfde5455e021e804
46d1afed35f0e26947a00bdbcd647835b1166aab
refs/heads/master
2020-05-14T17:33:43.034587
2020-03-17T12:43:41
2020-03-17T12:43:41
181,893,219
0
0
null
null
null
null
UTF-8
Java
false
false
1,162
java
package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { // write your code here System.out.println("Введите операцию: "); System.out.println("1. Сложение"); System.out.println("2. Вычитание"); System.out.println("3. Умножение"); System.out.println("4. Деление"); Scanner scan = new Scanner(System.in); int operation = scan.nextInt(); System.out.println("Введите первое число"); int a = scan.nextInt(); System.out.println("Введите второе число"); int b = scan.nextInt(); int result = 0; if (operation == 1) { result = a + b; } else if (operation == 2) { result = a - b; } else if (operation == 3) { result = a * b; } else if (operation == 4) { result = a / b; } else { System.out.println("Введите 1, 2, 3 или 4"); } System.out.println("Результат = " + result); } }
a68a00377aabe2b89dc9ab6af98468063d9a5737
246bb115cbb4e6654243526c529eccba1aa806b7
/engine/src/test/java/org/apache/hop/pipeline/transforms/loadsave/validator/PrimitiveBooleanArrayLoadSaveValidator.java
b478d70ac071d0ea998073b1656482d5cfb2ce01
[ "Apache-2.0" ]
permissive
davidjscience/hop
6f8f9391aa367a4fe9b446b1a7fc0f6c59e6a9ce
9de84b1957a0b97f17d183f018b0584ed68aae5a
refs/heads/master
2022-11-08T02:13:28.596902
2020-06-28T17:47:27
2020-06-28T17:47:27
275,682,334
0
0
Apache-2.0
2020-06-28T22:55:52
2020-06-28T22:55:51
null
UTF-8
Java
false
false
2,296
java
/*! ****************************************************************************** * * Hop : The Hop Orchestration Platform * * http://www.project-hop.org * ******************************************************************************* * * 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.apache.hop.pipeline.transforms.loadsave.validator; import java.util.Random; public class PrimitiveBooleanArrayLoadSaveValidator implements IFieldLoadSaveValidator<boolean[]> { private final IFieldLoadSaveValidator<Boolean> validator; private final Integer elements; public PrimitiveBooleanArrayLoadSaveValidator( IFieldLoadSaveValidator<Boolean> fieldValidator ) { this( fieldValidator, null ); } public PrimitiveBooleanArrayLoadSaveValidator( IFieldLoadSaveValidator<Boolean> fieldValidator, Integer elements ) { validator = fieldValidator; this.elements = elements; } @Override public boolean[] getTestObject() { int max = elements == null ? new Random().nextInt( 100 ) + 50 : elements; boolean[] result = new boolean[ max ]; for ( int i = 0; i < max; i++ ) { result[ i ] = validator.getTestObject(); } return result; } @Override public boolean validateTestObject( boolean[] original, Object actual ) { if ( original.getClass().isAssignableFrom( actual.getClass() ) ) { boolean[] otherList = (boolean[]) actual; if ( original.length != otherList.length ) { return false; } for ( int i = 0; i < original.length; i++ ) { if ( !this.validator.validateTestObject( original[ i ], otherList[ i ] ) ) { return false; } } return true; } return false; } }
9360d4d503e2bc59354cb7d135b308e9c2e45813
0af8b92686a58eb0b64e319b22411432aca7a8f3
/large-multiproject/project39/src/main/java/org/gradle/test/performance39_5/Production39_496.java
583bcadce7d6c0d814b1bc012132d207f1506291
[]
no_license
gradle/performance-comparisons
b0d38db37c326e0ce271abebdb3c91769b860799
e53dc7182fafcf9fedf07920cbbea8b40ee4eef4
refs/heads/master
2023-08-14T19:24:39.164276
2022-11-24T05:18:33
2022-11-24T05:18:33
80,121,268
17
15
null
2022-09-30T08:04:35
2017-01-26T14:25:33
null
UTF-8
Java
false
false
305
java
package org.gradle.test.performance39_5; public class Production39_496 extends org.gradle.test.performance13_5.Production13_496 { private final String property; public Production39_496() { this.property = "foo"; } public String getProperty() { return property; } }
7257e9fb4588b68557c9e474ef7d5dc80108e461
30edc4a914d4533a6a005de624464d0cc4201539
/src/main/java/pages/ViewLead.java
fa5ec0a8e92b1d9c41a7ff59b4ea9036d6c1f76b
[]
no_license
palanimohand/POMFrameworkWithMaven
f96acecdc74c44bba98afded2e3f8e9d084f7799
e19db025778e1873ea6d0638dcb3e3332f7b82a8
refs/heads/master
2021-01-24T01:30:29.091164
2018-03-04T08:48:09
2018-03-04T08:48:09
122,814,018
0
0
null
null
null
null
UTF-8
Java
false
false
1,696
java
package pages; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.How; import org.openqa.selenium.support.PageFactory; import wdMethods.ProjectMethods; public class ViewLead extends ProjectMethods{ public ViewLead() { PageFactory.initElements(driver,this); } @FindBy(how=How.ID,using="viewLead_firstName_sp") WebElement elefirstname; public ViewLead verifyFirstName(String data) { verifyExactText(elefirstname, data); return this; } @FindBy(how=How.ID,using="viewLead_companyName_sp") WebElement eleCompanyName; public ViewLead verifyCompanyName(String data) { verifyExactText(elefirstname, data); return this; } public ViewLead verifyPageTitle(String data) { verifyTitle(data); return this; } @FindBy(how=How.LINK_TEXT,using="Find Leads ") WebElement eleFindLeadsLink; public FindLeadsPage clickFindLeads() { clickWithNoSnap(eleFindLeadsLink); return new FindLeadsPage(); } @FindBy(how=How.LINK_TEXT,using="Duplicate Lead") WebElement eleDuplicateLeadButton; public DuplicateLeadPage clickDuplicateLeadButton() { click(eleDuplicateLeadButton); return new DuplicateLeadPage(); } public String copyFirstName() { String firstName = getText(elefirstname); return firstName; } @FindBy(how=How.XPATH,using="//a[@class='subMenuButtonDangerous']") WebElement eleDeleteButton; public MyLeadsPage clickDeleteButton() { click(eleDeleteButton); return new MyLeadsPage(); } @FindBy(how=How.XPATH,using="//a[@class = 'subMenuButton' ][3]") WebElement eleEditButton; public EditLeadPage clickEditButton() { click(eleEditButton); return new EditLeadPage(); } }
ab1be5814c01e5a3c6cc36a26ff874a9a1ae3de9
84a14d51109e4e1edffbf715daaa185f3fb53016
/src/main/app/com/jiaxiao/service/impl/BaseServiceImpl.java
049233a9d68fab16ae52b4347076a01c23b647ca
[]
no_license
jiaxiaoDever/project
a04291abda1a7764ee05d0b8da9abf082620a7b3
5dc7fef315012555d85b1e2334c6f060dede66ac
refs/heads/master
2016-09-05T23:42:42.748593
2015-11-27T07:50:16
2015-11-27T07:50:16
34,437,109
1
0
null
null
null
null
UTF-8
Java
false
false
2,451
java
package com.jiaxiao.service.impl; import java.util.UUID; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Propagation; import org.springframework.transaction.annotation.Transactional; import com.jiaxiao.entity.TbStudentJx; import com.jiaxiao.entity.TbWxUser; import com.jiaxiao.repository.StudentJxDAO; import com.jiaxiao.repository.WxUserDAO; import com.jiaxiao.service.BaseService; @Service(value = "baseService") @Transactional(readOnly = true) public class BaseServiceImpl implements BaseService { @Autowired private StudentJxDAO studentJxDAO; @Autowired private WxUserDAO wxUserDAO; @Override public String isUserBandedTeacher(String openId) { TbWxUser user = wxUserDAO.getUserByOpenId(openId); if(user != null && user.getIsBinded() != null && user.getIsBinded() == 1 && user.getTeacherId() != null) return user.getTeacherId(); return null; } @Override public String isUserBandedStudent(String openId) { TbWxUser user = wxUserDAO.getUserByOpenId(openId); if(user != null && user.getIsBinded() != null && user.getIsBinded() == 1 && user.getStudentId() != null) return user.getStudentId(); return null; } @Override @Transactional(propagation = Propagation.REQUIRED) public int bandToStudent(String openId, String studentName, String studentCardId, String studentPhone) { //1.判断是否有该学员 TbStudentJx studentJx = studentJxDAO.getStudentJx(studentName, studentCardId, studentPhone); if(studentJx == null) return 2; //2.绑定学员到微信用户,如果已经有微信用户则修改,否则插入 TbWxUser user = wxUserDAO.getUserByOpenId(openId); int u = 0; //解除学员对应其他微信号的绑定 wxUserDAO.unbandStudentUser(studentJx.getStudentId()); if(user != null){ u = wxUserDAO.updateWxUserStudentInfo(openId, studentJx.getStudentId()); }else{ user = new TbWxUser(); user.setUserId(UUID.randomUUID().toString()); user.setStudentId(studentJx.getStudentId()); user.setOpenId(openId); u = wxUserDAO.insertBandingUser(user); } if(u < 1) return 3; return 1; } @Override @Transactional(propagation = Propagation.REQUIRED) public int unbandUser(String openId) { return wxUserDAO.unbandUser(openId); } public BaseServiceImpl() { super(); } }
1e72fa32b2970cce90b07c2c7b3ea5b2b6ad6aa5
e32793ce724877b955bc24877b06e6284aca5649
/6.Funtion/app/src/androidTest/java/com/coban/funtion/ExampleInstrumentedTest.java
8b3be327ff2742fa96b191ca9950baca5a017d2a
[]
no_license
KinKute/Tu-hoc-Android
62fc9cc8f2b0c75f3d47766c9094b280b7af2922
4fd7416e2153ecf5a61ffc234519fbe3fe3c2904
refs/heads/master
2023-06-20T07:53:07.463039
2021-07-19T10:20:00
2021-07-19T10:20:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
748
java
package com.coban.funtion; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); assertEquals("com.coban.funtion", appContext.getPackageName()); } }
400522d1291d84b0024528b892070bddc9a44556
330cfdbad4b1f0d3460f8cc2c9754f7ae51d81a2
/src/main/java/domain/Student.java
b4240d3dff33b76d61532d299c6a23b3549257ee
[]
no_license
ionutgrad09/Assignment2MV
f867f8b6e50957043fdf2363479f02368459fc32
516183a2434a70e755ca058e81de6c04b755f421
refs/heads/master
2020-04-30T07:36:21.144811
2019-05-08T07:24:48
2019-05-08T07:24:48
176,689,700
0
0
null
null
null
null
UTF-8
Java
false
false
884
java
package domain; public class Student implements HasID<String> { private String idStudent; private String nume; private int grupa; public Student(String idStudent, String nume, int grupa) { this.idStudent = idStudent; this.nume = nume; this.grupa = grupa; } @Override public String getID() { return idStudent; } @Override public void setID(String idStudent) { this.idStudent = idStudent; } public String getNume() { return nume; } public void setNume(String nume) { this.nume = nume; } public int getGrupa() { return grupa; } public void setGrupa(int grupa) { this.grupa = grupa; } @Override public String toString() { return "Student{" + "idStudent=" + idStudent + ", nume='" + nume + '\'' + ", grupa=" + grupa + '\'' + '}'; } }
998a7973146f964adaaaa8d5d3d09586d8668cc2
18a76ece29eebf3b0ab3563d8f8147ef91883e57
/AppDevelop3/Test5/Test5/obj/Debug/81/android/src/android/support/design/R.java
05a72e6cfb83c481bd3fa28a19a30a5bf0a2c945
[]
no_license
CrazySoldier04/Cuatrimestre5
8ee24e524d0c6d50f0477a377ff7ea0fbb808b90
e2ce1a7da340993394fd1a4c78c11b35f64d892d
refs/heads/master
2020-04-15T08:18:41.692427
2019-03-12T02:45:53
2019-03-12T02:45:53
164,519,258
0
0
null
null
null
null
UTF-8
Java
false
false
628,020
java
/* 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 android.support.design; public final class R { public static final class anim { public static int abc_fade_in=0x7f050000; public static int abc_fade_out=0x7f050001; public static int abc_grow_fade_in_from_bottom=0x7f050002; public static int abc_popup_enter=0x7f050003; public static int abc_popup_exit=0x7f050004; public static int abc_shrink_fade_out_from_bottom=0x7f050005; public static int abc_slide_in_bottom=0x7f050006; public static int abc_slide_in_top=0x7f050007; public static int abc_slide_out_bottom=0x7f050008; public static int abc_slide_out_top=0x7f050009; public static int design_bottom_sheet_slide_in=0x7f05000a; public static int design_bottom_sheet_slide_out=0x7f05000b; public static int design_snackbar_in=0x7f05000c; public static int design_snackbar_out=0x7f05000d; public static int tooltip_enter=0x7f05000e; public static int tooltip_exit=0x7f05000f; } public static final class animator { public static 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 int actionBarDivider=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 int actionBarItemBackground=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarPopupTheme=0x7f01004c; /** <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 int actionBarSize=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 int actionBarSplitStyle=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 int actionBarStyle=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 int actionBarTabBarStyle=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarTabStyle=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarTabTextStyle=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 int actionBarTheme=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarWidgetTheme=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionButtonStyle=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 int actionDropDownStyle=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 int actionLayout=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 int actionMenuTextAppearance=0x7f010054; /** <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 int actionMenuTextColor=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 int actionModeBackground=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeCloseButtonStyle=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 int actionModeCloseDrawable=0x7f01005a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeCopyDrawable=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 int actionModeCutDrawable=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeFindDrawable=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModePasteDrawable=0x7f01005d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModePopupWindowStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeSelectAllDrawable=0x7f01005e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeShareDrawable=0x7f01005f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeSplitBackground=0x7f010059; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeStyle=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 int actionModeWebSearchDrawable=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionOverflowButtonStyle=0x7f01004a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionOverflowMenuStyle=0x7f01004b; /** <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 int actionProviderClass=0x7f0100c6; /** <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 int actionViewClass=0x7f0100c5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int activityChooserViewStyle=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 int alertDialogButtonGroupStyle=0x7f01009a; /** <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 int alertDialogCenterButtons=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int alertDialogStyle=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int alertDialogTheme=0x7f01009c; /** <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 int allowStacking=0x7f0100b2; /** <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 int alpha=0x7f0100b3; /** <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>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static int alphabeticModifiers=0x7f0100c1; /** <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 int arrowHeadLength=0x7f0100ba; /** <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 int arrowShaftLength=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int autoCompleteTextViewStyle=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 int autoSizeMaxTextSize=0x7f01003b; /** <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 int autoSizeMinTextSize=0x7f01003a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int autoSizePresetSizes=0x7f010039; /** <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 int autoSizeStepGranularity=0x7f010038; /** <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>uniform</code></td><td>1</td><td></td></tr> </table> */ public static int autoSizeTextType=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 int background=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 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 int backgroundSplit=0x7f010017; /** <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 int backgroundStacked=0x7f010016; /** <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 int backgroundTint=0x7f0100fd; /** <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 int backgroundTintMode=0x7f0100fe; /** <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 int barLength=0x7f0100bc; /** <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 int behavior_autoHide=0x7f010128; /** <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 int behavior_hideable=0x7f010105; /** <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 int behavior_overlapTop=0x7f010131; /** <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 int behavior_peekHeight=0x7f010104; /** <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 int behavior_skipCollapsed=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 int borderWidth=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 int borderlessButtonStyle=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 int bottomSheetDialogTheme=0x7f010120; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int bottomSheetStyle=0x7f010121; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonBarButtonStyle=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 int buttonBarNegativeButtonStyle=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 int buttonBarNeutralButtonStyle=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 int buttonBarPositiveButtonStyle=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 int buttonBarStyle=0x7f01006e; /** <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 int buttonGravity=0x7f0100f2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonPanelSideLayout=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonStyle=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonStyleSmall=0x7f0100a3; /** <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 int buttonTint=0x7f0100b4; /** <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 int buttonTintMode=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 int checkboxStyle=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int checkedTextViewStyle=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 int closeIcon=0x7f0100d5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int closeItemLayout=0x7f010027; /** <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 int collapseContentDescription=0x7f0100f4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int collapseIcon=0x7f0100f3; /** <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 int collapsedTitleGravity=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 int collapsedTitleTextAppearance=0x7f01010d; /** <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 int color=0x7f0100b6; /** <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 int colorAccent=0x7f010091; /** <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 int colorBackgroundFloating=0x7f010098; /** <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 int colorButtonNormal=0x7f010095; /** <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 int colorControlActivated=0x7f010093; /** <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 int colorControlHighlight=0x7f010094; /** <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 int colorControlNormal=0x7f010092; /** <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 int colorError=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 int colorPrimary=0x7f01008f; /** <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 int colorPrimaryDark=0x7f010090; /** <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 int colorSwitchThumbNormal=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 int commitIcon=0x7f0100da; /** <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 int contentDescription=0x7f0100c7; /** <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 int contentInsetEnd=0x7f010020; /** <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 int contentInsetEndWithActions=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 int contentInsetLeft=0x7f010021; /** <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 int contentInsetRight=0x7f010022; /** <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 int contentInsetStart=0x7f01001f; /** <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 int contentInsetStartWithNavigation=0x7f010023; /** <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 int contentScrim=0x7f01010e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int controlBackground=0x7f010097; /** <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 int counterEnabled=0x7f010147; /** <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 int counterMaxLength=0x7f010148; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int counterOverflowTextAppearance=0x7f01014a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int counterTextAppearance=0x7f010149; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int customNavigationLayout=0x7f010018; /** <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 int defaultQueryHint=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 int dialogPreferredPadding=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 int dialogTheme=0x7f010066; /** <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 int displayOptions=0x7f01000e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int divider=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int dividerHorizontal=0x7f010074; /** <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 int dividerPadding=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 int dividerVertical=0x7f010073; /** <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 int drawableSize=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 int drawerArrowStyle=0x7f010009; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int dropDownListViewStyle=0x7f010086; /** <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 int dropdownListPreferredItemHeight=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 int editTextBackground=0x7f01007b; /** <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 int editTextColor=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 int editTextStyle=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 int elevation=0x7f010025; /** <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 int errorEnabled=0x7f010145; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int errorTextAppearance=0x7f010146; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int expandActivityOverflowButtonDrawable=0x7f010029; /** <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 int expanded=0x7f0100ff; /** <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 int expandedTitleGravity=0x7f010114; /** <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 int expandedTitleMargin=0x7f010107; /** <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 int expandedTitleMarginBottom=0x7f01010b; /** <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 int expandedTitleMarginEnd=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 int expandedTitleMarginStart=0x7f010108; /** <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 int expandedTitleMarginTop=0x7f010109; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int expandedTitleTextAppearance=0x7f01010c; /** <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 int fabSize=0x7f010124; /** <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 int fastScrollEnabled=0x7f010004; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int fastScrollHorizontalThumbDrawable=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int fastScrollHorizontalTrackDrawable=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int fastScrollVerticalThumbDrawable=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int fastScrollVerticalTrackDrawable=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int font=0x7f010158; /** <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 int fontFamily=0x7f01003c; /** <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 int fontProviderAuthority=0x7f010151; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int fontProviderCerts=0x7f010154; /** <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>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> */ public static int fontProviderFetchStrategy=0x7f010155; /** <p>May 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. <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>forever</code></td><td>-1</td><td></td></tr> </table> */ public static int fontProviderFetchTimeout=0x7f010156; /** <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 int fontProviderPackage=0x7f010152; /** <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 int fontProviderQuery=0x7f010153; /** <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>italic</code></td><td>1</td><td></td></tr> </table> */ public static int fontStyle=0x7f010157; /** <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 int fontWeight=0x7f010159; /** <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 int foregroundInsidePadding=0x7f010129; /** <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 int gapBetweenBars=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int goIcon=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 int headerLayout=0x7f01012f; /** <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 int height=0x7f01000a; /** <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 int hideOnContentScroll=0x7f01001e; /** <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 int hintAnimationEnabled=0x7f01014b; /** <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 int hintEnabled=0x7f010144; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int hintTextAppearance=0x7f010143; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int homeAsUpIndicator=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int homeLayout=0x7f010019; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int icon=0x7f010012; /** <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 int iconTint=0x7f0100c9; /** <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 int iconTintMode=0x7f0100ca; /** <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 int iconifiedByDefault=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int imageButtonStyle=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 int indeterminateProgressStyle=0x7f01001b; /** <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 int initialActivityCount=0x7f010028; /** <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 int insetForeground=0x7f010130; /** <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 int isLightTheme=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int itemBackground=0x7f01012d; /** <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 int itemIconTint=0x7f01012b; /** <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 int itemPadding=0x7f01001d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int itemTextAppearance=0x7f01012e; /** <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 int itemTextColor=0x7f01012c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int keylines=0x7f010118; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int layout=0x7f0100d1; /** <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 int layoutManager=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int layout_anchor=0x7f01011b; /** <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 int layout_anchorGravity=0x7f01011d; /** <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 int layout_behavior=0x7f01011a; /** <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 int layout_collapseMode=0x7f010116; /** <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 int layout_collapseParallaxMultiplier=0x7f010117; /** <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 int layout_dodgeInsetEdges=0x7f01011f; /** <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 int layout_insetEdge=0x7f01011e; /** <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 int layout_keyline=0x7f01011c; /** <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 int layout_scrollFlags=0x7f010102; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int layout_scrollInterpolator=0x7f010103; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listChoiceBackgroundIndicator=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listDividerAlertDialog=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 int listItemLayout=0x7f01002e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listLayout=0x7f01002b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listMenuViewStyle=0x7f0100ae; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listPopupWindowStyle=0x7f010087; /** <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 int listPreferredItemHeight=0x7f010081; /** <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 int listPreferredItemHeightLarge=0x7f010083; /** <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 int listPreferredItemHeightSmall=0x7f010082; /** <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 int listPreferredItemPaddingLeft=0x7f010084; /** <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 int listPreferredItemPaddingRight=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 int logo=0x7f010013; /** <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 int logoDescription=0x7f0100f7; /** <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 int maxActionInlineWidth=0x7f010132; /** <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 int maxButtonHeight=0x7f0100f1; /** <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 int measureWithLargestChild=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 int menu=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 int multiChoiceItemLayout=0x7f01002c; /** <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 int navigationContentDescription=0x7f0100f6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int navigationIcon=0x7f0100f5; /** <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 int navigationMode=0x7f01000d; /** <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>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static int numericModifiers=0x7f0100c2; /** <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 int overlapAnchor=0x7f0100cd; /** <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 int paddingBottomNoButtons=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 int paddingEnd=0x7f0100fb; /** <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 int paddingStart=0x7f0100fa; /** <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 int paddingTopNoTitle=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int panelBackground=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 int panelMenuListTheme=0x7f01008d; /** <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 int panelMenuListWidth=0x7f01008c; /** <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 int passwordToggleContentDescription=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 int passwordToggleDrawable=0x7f01014d; /** <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 int passwordToggleEnabled=0x7f01014c; /** <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 int passwordToggleTint=0x7f01014f; /** <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 int passwordToggleTintMode=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 int popupMenuStyle=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 int popupTheme=0x7f010026; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int popupWindowStyle=0x7f010079; /** <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 int preserveIconSpacing=0x7f0100cb; /** <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 int pressedTranslationZ=0x7f010125; /** <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 int progressBarPadding=0x7f01001c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int progressBarStyle=0x7f01001a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int queryBackground=0x7f0100dc; /** <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 int queryHint=0x7f0100d3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int radioButtonStyle=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int ratingBarStyle=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 int ratingBarStyleIndicator=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 int ratingBarStyleSmall=0x7f0100aa; /** <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 int reverseLayout=0x7f010002; /** <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 int rippleColor=0x7f010123; /** <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 int scrimAnimationDuration=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 int scrimVisibleHeightTrigger=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int searchHintIcon=0x7f0100d8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int searchIcon=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int searchViewStyle=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 int seekBarStyle=0x7f0100ab; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int selectableItemBackground=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 int selectableItemBackgroundBorderless=0x7f010071; /** <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 int showAsAction=0x7f0100c3; /** <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 int showDividers=0x7f0100bf; /** <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 int showText=0x7f0100e8; /** <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 int showTitle=0x7f01002f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int singleChoiceItemLayout=0x7f01002d; /** <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 int spanCount=0x7f010001; /** <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 int spinBars=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int spinnerDropDownItemStyle=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int spinnerStyle=0x7f0100ac; /** <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 int splitTrack=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 int srcCompat=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 int stackFromEnd=0x7f010003; /** <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 int state_above_anchor=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 int state_collapsed=0x7f010100; /** <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 int state_collapsible=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 int statusBarBackground=0x7f010119; /** <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 int statusBarScrim=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 int subMenuArrow=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 int submitBackground=0x7f0100dd; /** <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 int subtitle=0x7f01000f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int subtitleTextAppearance=0x7f0100ea; /** <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 int subtitleTextColor=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 int subtitleTextStyle=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int suggestionRowLayout=0x7f0100db; /** <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 int switchMinWidth=0x7f0100e5; /** <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 int switchPadding=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 int switchStyle=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 int switchTextAppearance=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 int tabBackground=0x7f010136; /** <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 int tabContentStart=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>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static int tabGravity=0x7f010138; /** <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 int tabIndicatorColor=0x7f010133; /** <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 int tabIndicatorHeight=0x7f010134; /** <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 int tabMaxWidth=0x7f01013a; /** <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 int tabMinWidth=0x7f010139; /** <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 int tabMode=0x7f010137; /** <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 int tabPadding=0x7f010142; /** <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 int tabPaddingBottom=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 int tabPaddingEnd=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 int tabPaddingStart=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 int tabPaddingTop=0x7f01013f; /** <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 int tabSelectedTextColor=0x7f01013d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int tabTextAppearance=0x7f01013b; /** <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 int tabTextColor=0x7f01013c; /** <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 int textAllCaps=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int textAppearanceLargePopupMenu=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int textAppearanceListItem=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 int textAppearanceListItemSecondary=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 int textAppearanceListItemSmall=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 int textAppearancePopupMenuHeader=0x7f010065; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int textAppearanceSearchResultSubtitle=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 int textAppearanceSearchResultTitle=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 int textAppearanceSmallPopupMenu=0x7f010064; /** <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 int textColorAlertDialogListItem=0x7f01009d; /** <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 int textColorError=0x7f010122; /** <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 int textColorSearchUrl=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 int theme=0x7f0100fc; /** <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 int thickness=0x7f0100bd; /** <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 int thumbTextPadding=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 int thumbTint=0x7f0100de; /** <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 int thumbTintMode=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 int tickMark=0x7f010033; /** <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 int tickMarkTint=0x7f010034; /** <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 int tickMarkTintMode=0x7f010035; /** <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 int tint=0x7f010031; /** <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 int tintMode=0x7f010032; /** <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 int title=0x7f01000c; /** <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 int titleEnabled=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 int titleMargin=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 int titleMarginBottom=0x7f0100ef; /** <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 int titleMarginEnd=0x7f0100ed; /** <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 int titleMarginStart=0x7f0100ec; /** <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 int titleMarginTop=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 int titleMargins=0x7f0100f0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int titleTextAppearance=0x7f0100e9; /** <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 int titleTextColor=0x7f0100f8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int titleTextStyle=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int toolbarId=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 int toolbarNavigationButtonStyle=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 int toolbarStyle=0x7f010076; /** <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 int tooltipForegroundColor=0x7f0100b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int tooltipFrameBackground=0x7f0100af; /** <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 int tooltipText=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 int track=0x7f0100e0; /** <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 int trackTint=0x7f0100e1; /** <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 int trackTintMode=0x7f0100e2; /** <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 int useCompatPadding=0x7f010127; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int voiceIcon=0x7f0100d9; /** <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 int windowActionBar=0x7f01003d; /** <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 int windowActionBarOverlay=0x7f01003f; /** <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 int windowActionModeOverlay=0x7f010040; /** <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 int windowFixedHeightMajor=0x7f010044; /** <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 int windowFixedHeightMinor=0x7f010042; /** <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 int windowFixedWidthMajor=0x7f010041; /** <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 int windowFixedWidthMinor=0x7f010043; /** <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 int windowMinWidthMajor=0x7f010045; /** <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 int windowMinWidthMinor=0x7f010046; /** <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 int windowNoTitle=0x7f01003e; } public static final class bool { public static int abc_action_bar_embed_tabs=0x7f0b0000; public static int abc_allow_stacked_button_bar=0x7f0b0001; public static int abc_config_actionMenuItemAllCaps=0x7f0b0002; public static int abc_config_closeDialogWhenTouchOutside=0x7f0b0003; public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0b0004; } public static final class color { public static int abc_background_cache_hint_selector_material_dark=0x7f0c004b; public static int abc_background_cache_hint_selector_material_light=0x7f0c004c; public static int abc_btn_colored_borderless_text_material=0x7f0c004d; public static int abc_btn_colored_text_material=0x7f0c004e; public static int abc_color_highlight_material=0x7f0c004f; public static int abc_hint_foreground_material_dark=0x7f0c0050; public static int abc_hint_foreground_material_light=0x7f0c0051; public static int abc_input_method_navigation_guard=0x7f0c0000; public static int abc_primary_text_disable_only_material_dark=0x7f0c0052; public static int abc_primary_text_disable_only_material_light=0x7f0c0053; public static int abc_primary_text_material_dark=0x7f0c0054; public static int abc_primary_text_material_light=0x7f0c0055; public static int abc_search_url_text=0x7f0c0056; public static int abc_search_url_text_normal=0x7f0c0001; public static int abc_search_url_text_pressed=0x7f0c0002; public static int abc_search_url_text_selected=0x7f0c0003; public static int abc_secondary_text_material_dark=0x7f0c0057; public static int abc_secondary_text_material_light=0x7f0c0058; public static int abc_tint_btn_checkable=0x7f0c0059; public static int abc_tint_default=0x7f0c005a; public static int abc_tint_edittext=0x7f0c005b; public static int abc_tint_seek_thumb=0x7f0c005c; public static int abc_tint_spinner=0x7f0c005d; public static int abc_tint_switch_track=0x7f0c005e; public static int accent_material_dark=0x7f0c0004; public static int accent_material_light=0x7f0c0005; public static int background_floating_material_dark=0x7f0c0006; public static int background_floating_material_light=0x7f0c0007; public static int background_material_dark=0x7f0c0008; public static int background_material_light=0x7f0c0009; public static int bright_foreground_disabled_material_dark=0x7f0c000a; public static int bright_foreground_disabled_material_light=0x7f0c000b; public static int bright_foreground_inverse_material_dark=0x7f0c000c; public static int bright_foreground_inverse_material_light=0x7f0c000d; public static int bright_foreground_material_dark=0x7f0c000e; public static int bright_foreground_material_light=0x7f0c000f; public static int button_material_dark=0x7f0c0010; public static int button_material_light=0x7f0c0011; public static int colorAccent=0x7f0c0049; public static int colorPrimary=0x7f0c0047; public static int colorPrimaryDark=0x7f0c0048; public static int design_bottom_navigation_shadow_color=0x7f0c003c; public static int design_error=0x7f0c005f; public static int design_fab_shadow_end_color=0x7f0c003d; public static int design_fab_shadow_mid_color=0x7f0c003e; public static int design_fab_shadow_start_color=0x7f0c003f; public static int design_fab_stroke_end_inner_color=0x7f0c0040; public static int design_fab_stroke_end_outer_color=0x7f0c0041; public static int design_fab_stroke_top_inner_color=0x7f0c0042; public static int design_fab_stroke_top_outer_color=0x7f0c0043; public static int design_snackbar_background_color=0x7f0c0044; public static int design_tint_password_toggle=0x7f0c0060; public static int dim_foreground_disabled_material_dark=0x7f0c0012; public static int dim_foreground_disabled_material_light=0x7f0c0013; public static int dim_foreground_material_dark=0x7f0c0014; public static int dim_foreground_material_light=0x7f0c0015; public static int error_color_material=0x7f0c0016; public static int foreground_material_dark=0x7f0c0017; public static int foreground_material_light=0x7f0c0018; public static int highlighted_text_material_dark=0x7f0c0019; public static int highlighted_text_material_light=0x7f0c001a; public static int ic_launcher_background=0x7f0c004a; public static int material_blue_grey_800=0x7f0c001b; public static int material_blue_grey_900=0x7f0c001c; public static int material_blue_grey_950=0x7f0c001d; public static int material_deep_teal_200=0x7f0c001e; public static int material_deep_teal_500=0x7f0c001f; public static int material_grey_100=0x7f0c0020; public static int material_grey_300=0x7f0c0021; public static int material_grey_50=0x7f0c0022; public static int material_grey_600=0x7f0c0023; public static int material_grey_800=0x7f0c0024; public static int material_grey_850=0x7f0c0025; public static int material_grey_900=0x7f0c0026; public static int notification_action_color_filter=0x7f0c0045; public static int notification_icon_bg_color=0x7f0c0046; public static int notification_material_background_media_default_color=0x7f0c003b; public static int primary_dark_material_dark=0x7f0c0027; public static int primary_dark_material_light=0x7f0c0028; public static int primary_material_dark=0x7f0c0029; public static int primary_material_light=0x7f0c002a; public static int primary_text_default_material_dark=0x7f0c002b; public static int primary_text_default_material_light=0x7f0c002c; public static int primary_text_disabled_material_dark=0x7f0c002d; public static int primary_text_disabled_material_light=0x7f0c002e; public static int ripple_material_dark=0x7f0c002f; public static int ripple_material_light=0x7f0c0030; public static int secondary_text_default_material_dark=0x7f0c0031; public static int secondary_text_default_material_light=0x7f0c0032; public static int secondary_text_disabled_material_dark=0x7f0c0033; public static int secondary_text_disabled_material_light=0x7f0c0034; public static int switch_thumb_disabled_material_dark=0x7f0c0035; public static int switch_thumb_disabled_material_light=0x7f0c0036; public static int switch_thumb_material_dark=0x7f0c0061; public static int switch_thumb_material_light=0x7f0c0062; public static int switch_thumb_normal_material_dark=0x7f0c0037; public static int switch_thumb_normal_material_light=0x7f0c0038; public static int tooltip_background_dark=0x7f0c0039; public static int tooltip_background_light=0x7f0c003a; } public static final class dimen { public static int abc_action_bar_content_inset_material=0x7f070012; public static int abc_action_bar_content_inset_with_nav=0x7f070013; public static int abc_action_bar_default_height_material=0x7f070007; public static int abc_action_bar_default_padding_end_material=0x7f070014; public static int abc_action_bar_default_padding_start_material=0x7f070015; public static int abc_action_bar_elevation_material=0x7f070017; public static int abc_action_bar_icon_vertical_padding_material=0x7f070018; public static int abc_action_bar_overflow_padding_end_material=0x7f070019; public static int abc_action_bar_overflow_padding_start_material=0x7f07001a; public static int abc_action_bar_progress_bar_size=0x7f070008; public static int abc_action_bar_stacked_max_height=0x7f07001b; public static int abc_action_bar_stacked_tab_max_width=0x7f07001c; public static int abc_action_bar_subtitle_bottom_margin_material=0x7f07001d; public static int abc_action_bar_subtitle_top_margin_material=0x7f07001e; public static int abc_action_button_min_height_material=0x7f07001f; public static int abc_action_button_min_width_material=0x7f070020; public static int abc_action_button_min_width_overflow_material=0x7f070021; public static int abc_alert_dialog_button_bar_height=0x7f070006; public static int abc_button_inset_horizontal_material=0x7f070022; public static int abc_button_inset_vertical_material=0x7f070023; public static int abc_button_padding_horizontal_material=0x7f070024; public static int abc_button_padding_vertical_material=0x7f070025; public static int abc_cascading_menus_min_smallest_width=0x7f070026; public static int abc_config_prefDialogWidth=0x7f07000b; public static int abc_control_corner_material=0x7f070027; public static int abc_control_inset_material=0x7f070028; public static int abc_control_padding_material=0x7f070029; public static int abc_dialog_fixed_height_major=0x7f07000c; public static int abc_dialog_fixed_height_minor=0x7f07000d; public static int abc_dialog_fixed_width_major=0x7f07000e; public static int abc_dialog_fixed_width_minor=0x7f07000f; public static int abc_dialog_list_padding_bottom_no_buttons=0x7f07002a; public static int abc_dialog_list_padding_top_no_title=0x7f07002b; public static int abc_dialog_min_width_major=0x7f070010; public static int abc_dialog_min_width_minor=0x7f070011; public static int abc_dialog_padding_material=0x7f07002c; public static int abc_dialog_padding_top_material=0x7f07002d; public static int abc_dialog_title_divider_material=0x7f07002e; public static int abc_disabled_alpha_material_dark=0x7f07002f; public static int abc_disabled_alpha_material_light=0x7f070030; public static int abc_dropdownitem_icon_width=0x7f070031; public static int abc_dropdownitem_text_padding_left=0x7f070032; public static int abc_dropdownitem_text_padding_right=0x7f070033; public static int abc_edit_text_inset_bottom_material=0x7f070034; public static int abc_edit_text_inset_horizontal_material=0x7f070035; public static int abc_edit_text_inset_top_material=0x7f070036; public static int abc_floating_window_z=0x7f070037; public static int abc_list_item_padding_horizontal_material=0x7f070038; public static int abc_panel_menu_list_width=0x7f070039; public static int abc_progress_bar_height_material=0x7f07003a; public static int abc_search_view_preferred_height=0x7f07003b; public static int abc_search_view_preferred_width=0x7f07003c; public static int abc_seekbar_track_background_height_material=0x7f07003d; public static int abc_seekbar_track_progress_height_material=0x7f07003e; public static int abc_select_dialog_padding_start_material=0x7f07003f; public static int abc_switch_padding=0x7f070016; public static int abc_text_size_body_1_material=0x7f070040; public static int abc_text_size_body_2_material=0x7f070041; public static int abc_text_size_button_material=0x7f070042; public static int abc_text_size_caption_material=0x7f070043; public static int abc_text_size_display_1_material=0x7f070044; public static int abc_text_size_display_2_material=0x7f070045; public static int abc_text_size_display_3_material=0x7f070046; public static int abc_text_size_display_4_material=0x7f070047; public static int abc_text_size_headline_material=0x7f070048; public static int abc_text_size_large_material=0x7f070049; public static int abc_text_size_medium_material=0x7f07004a; public static int abc_text_size_menu_header_material=0x7f07004b; public static int abc_text_size_menu_material=0x7f07004c; public static int abc_text_size_small_material=0x7f07004d; public static int abc_text_size_subhead_material=0x7f07004e; public static int abc_text_size_subtitle_material_toolbar=0x7f070009; public static int abc_text_size_title_material=0x7f07004f; public static int abc_text_size_title_material_toolbar=0x7f07000a; /** Default screen margins, per the Android Design guidelines. */ public static int activity_horizontal_margin=0x7f07009b; public static int activity_vertical_margin=0x7f07009c; public static int compat_button_inset_horizontal_material=0x7f07008b; public static int compat_button_inset_vertical_material=0x7f07008c; public static int compat_button_padding_horizontal_material=0x7f07008d; public static int compat_button_padding_vertical_material=0x7f07008e; public static int compat_control_corner_material=0x7f07008f; public static int design_appbar_elevation=0x7f070069; public static int design_bottom_navigation_active_item_max_width=0x7f07006a; public static int design_bottom_navigation_active_text_size=0x7f07006b; public static int design_bottom_navigation_elevation=0x7f07006c; public static int design_bottom_navigation_height=0x7f07006d; public static int design_bottom_navigation_item_max_width=0x7f07006e; public static int design_bottom_navigation_item_min_width=0x7f07006f; public static int design_bottom_navigation_margin=0x7f070070; public static int design_bottom_navigation_shadow_height=0x7f070071; public static int design_bottom_navigation_text_size=0x7f070072; public static int design_bottom_sheet_modal_elevation=0x7f070073; public static int design_bottom_sheet_peek_height_min=0x7f070074; public static int design_fab_border_width=0x7f070075; public static int design_fab_elevation=0x7f070076; public static int design_fab_image_size=0x7f070077; public static int design_fab_size_mini=0x7f070078; public static int design_fab_size_normal=0x7f070079; public static int design_fab_translation_z_pressed=0x7f07007a; public static int design_navigation_elevation=0x7f07007b; public static int design_navigation_icon_padding=0x7f07007c; public static int design_navigation_icon_size=0x7f07007d; public static int design_navigation_max_width=0x7f070061; public static int design_navigation_padding_bottom=0x7f07007e; public static int design_navigation_separator_vertical_padding=0x7f07007f; public static int design_snackbar_action_inline_max_width=0x7f070062; public static int design_snackbar_background_corner_radius=0x7f070063; public static int design_snackbar_elevation=0x7f070080; public static int design_snackbar_extra_spacing_horizontal=0x7f070064; public static int design_snackbar_max_width=0x7f070065; public static int design_snackbar_min_width=0x7f070066; public static int design_snackbar_padding_horizontal=0x7f070081; public static int design_snackbar_padding_vertical=0x7f070082; public static int design_snackbar_padding_vertical_2lines=0x7f070067; public static int design_snackbar_text_size=0x7f070083; public static int design_tab_max_width=0x7f070084; public static int design_tab_scrollable_min_width=0x7f070068; public static int design_tab_text_size=0x7f070085; public static int design_tab_text_size_2line=0x7f070086; public static int disabled_alpha_material_dark=0x7f070050; public static int disabled_alpha_material_light=0x7f070051; public static int fab_margin=0x7f07009f; public static int fastscroll_default_thickness=0x7f070000; public static int fastscroll_margin=0x7f070001; public static int fastscroll_minimum_range=0x7f070002; public static int highlight_alpha_material_colored=0x7f070052; public static int highlight_alpha_material_dark=0x7f070053; public static int highlight_alpha_material_light=0x7f070054; public static int hint_alpha_material_dark=0x7f070055; public static int hint_alpha_material_light=0x7f070056; public static int hint_pressed_alpha_material_dark=0x7f070057; public static int hint_pressed_alpha_material_light=0x7f070058; public static int item_touch_helper_max_drag_scroll_per_frame=0x7f070003; public static int item_touch_helper_swipe_escape_max_velocity=0x7f070004; public static int item_touch_helper_swipe_escape_velocity=0x7f070005; public static int nav_header_height=0x7f07009e; public static int nav_header_vertical_spacing=0x7f07009d; public static int notification_action_icon_size=0x7f070090; public static int notification_action_text_size=0x7f070091; public static int notification_big_circle_margin=0x7f070092; public static int notification_content_margin_start=0x7f070088; public static int notification_large_icon_height=0x7f070093; public static int notification_large_icon_width=0x7f070094; public static int notification_main_column_padding_top=0x7f070089; public static int notification_media_narrow_margin=0x7f07008a; public static int notification_right_icon_size=0x7f070095; public static int notification_right_side_padding_top=0x7f070087; public static int notification_small_icon_background_padding=0x7f070096; public static int notification_small_icon_size_as_large=0x7f070097; public static int notification_subtext_size=0x7f070098; public static int notification_top_pad=0x7f070099; public static int notification_top_pad_large_text=0x7f07009a; public static int tooltip_corner_radius=0x7f070059; public static int tooltip_horizontal_padding=0x7f07005a; public static int tooltip_margin=0x7f07005b; public static int tooltip_precise_anchor_extra_offset=0x7f07005c; public static int tooltip_precise_anchor_threshold=0x7f07005d; public static int tooltip_vertical_padding=0x7f07005e; public static int tooltip_y_offset_non_touch=0x7f07005f; public static int tooltip_y_offset_touch=0x7f070060; } public static final class drawable { public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static int abc_action_bar_item_background_material=0x7f020001; public static int abc_btn_borderless_material=0x7f020002; public static int abc_btn_check_material=0x7f020003; public static int abc_btn_check_to_on_mtrl_000=0x7f020004; public static int abc_btn_check_to_on_mtrl_015=0x7f020005; public static int abc_btn_colored_material=0x7f020006; public static int abc_btn_default_mtrl_shape=0x7f020007; public static int abc_btn_radio_material=0x7f020008; public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static int abc_cab_background_internal_bg=0x7f02000d; public static int abc_cab_background_top_material=0x7f02000e; public static int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static int abc_control_background_material=0x7f020010; public static int abc_dialog_material_background=0x7f020011; public static int abc_edit_text_material=0x7f020012; public static int abc_ic_ab_back_material=0x7f020013; public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static int abc_ic_clear_material=0x7f020015; public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static int abc_ic_go_search_api_material=0x7f020017; public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static int abc_ic_menu_overflow_material=0x7f02001a; public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static int abc_ic_search_api_material=0x7f02001e; public static int abc_ic_star_black_16dp=0x7f02001f; public static int abc_ic_star_black_36dp=0x7f020020; public static int abc_ic_star_black_48dp=0x7f020021; public static int abc_ic_star_half_black_16dp=0x7f020022; public static int abc_ic_star_half_black_36dp=0x7f020023; public static int abc_ic_star_half_black_48dp=0x7f020024; public static int abc_ic_voice_search_api_material=0x7f020025; public static int abc_item_background_holo_dark=0x7f020026; public static int abc_item_background_holo_light=0x7f020027; public static int abc_list_divider_mtrl_alpha=0x7f020028; public static int abc_list_focused_holo=0x7f020029; public static int abc_list_longpressed_holo=0x7f02002a; public static int abc_list_pressed_holo_dark=0x7f02002b; public static int abc_list_pressed_holo_light=0x7f02002c; public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static int abc_list_selector_background_transition_holo_light=0x7f02002e; public static int abc_list_selector_disabled_holo_dark=0x7f02002f; public static int abc_list_selector_disabled_holo_light=0x7f020030; public static int abc_list_selector_holo_dark=0x7f020031; public static int abc_list_selector_holo_light=0x7f020032; public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static int abc_popup_background_mtrl_mult=0x7f020034; public static int abc_ratingbar_indicator_material=0x7f020035; public static int abc_ratingbar_material=0x7f020036; public static int abc_ratingbar_small_material=0x7f020037; public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static int abc_seekbar_thumb_material=0x7f02003d; public static int abc_seekbar_tick_mark_material=0x7f02003e; public static int abc_seekbar_track_material=0x7f02003f; public static int abc_spinner_mtrl_am_alpha=0x7f020040; public static int abc_spinner_textfield_background_material=0x7f020041; public static int abc_switch_thumb_material=0x7f020042; public static int abc_switch_track_mtrl_alpha=0x7f020043; public static int abc_tab_indicator_material=0x7f020044; public static int abc_tab_indicator_mtrl_alpha=0x7f020045; public static int abc_text_cursor_material=0x7f020046; public static int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static int abc_text_select_handle_left_mtrl_light=0x7f020048; public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static int abc_textfield_default_mtrl_alpha=0x7f02004e; public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static int abc_textfield_search_material=0x7f020051; public static int abc_vector_test=0x7f020052; public static int avd_hide_password=0x7f020053; public static int avd_hide_password_1=0x7f020071; public static int avd_hide_password_2=0x7f020072; public static int avd_hide_password_3=0x7f020073; public static int avd_show_password=0x7f020054; public static int avd_show_password_1=0x7f020074; public static int avd_show_password_2=0x7f020075; public static int avd_show_password_3=0x7f020076; public static int design_bottom_navigation_item_background=0x7f020055; public static int design_fab_background=0x7f020056; public static int design_ic_visibility=0x7f020057; public static int design_ic_visibility_off=0x7f020058; public static int design_password_eye=0x7f020059; public static int design_snackbar_background=0x7f02005a; public static int ic_menu_camera=0x7f02005b; public static int ic_menu_gallery=0x7f02005c; public static int ic_menu_manage=0x7f02005d; public static int ic_menu_send=0x7f02005e; public static int ic_menu_share=0x7f02005f; public static int ic_menu_slideshow=0x7f020060; public static int navigation_empty_icon=0x7f020061; public static int notification_action_background=0x7f020062; public static int notification_bg=0x7f020063; public static int notification_bg_low=0x7f020064; public static int notification_bg_low_normal=0x7f020065; public static int notification_bg_low_pressed=0x7f020066; public static int notification_bg_normal=0x7f020067; public static int notification_bg_normal_pressed=0x7f020068; public static int notification_icon_background=0x7f020069; public static int notification_template_icon_bg=0x7f02006f; public static int notification_template_icon_low_bg=0x7f020070; public static int notification_tile_bg=0x7f02006a; public static int notify_panel_notification_icon_bg=0x7f02006b; public static int side_nav_bar=0x7f02006c; public static int tooltip_frame_dark=0x7f02006d; public static int tooltip_frame_light=0x7f02006e; } public static final class id { public static int ALT=0x7f080032; public static int CTRL=0x7f080033; public static int FUNCTION=0x7f080034; public static int META=0x7f080035; public static int SHIFT=0x7f080036; public static int SYM=0x7f080037; public static int action0=0x7f0800a3; public static int action_bar=0x7f08007c; public static int action_bar_activity_content=0x7f080001; public static int action_bar_container=0x7f08007b; public static int action_bar_root=0x7f080077; public static int action_bar_spinner=0x7f080002; public static int action_bar_subtitle=0x7f08005b; public static int action_bar_title=0x7f08005a; public static int action_container=0x7f0800a0; public static int action_context_bar=0x7f08007d; public static int action_divider=0x7f0800a7; public static int action_image=0x7f0800a1; public static int action_menu_divider=0x7f080003; public static int action_menu_presenter=0x7f080004; public static int action_mode_bar=0x7f080079; public static int action_mode_bar_stub=0x7f080078; public static int action_mode_close_button=0x7f08005c; public static int action_settings=0x7f0800bc; public static int action_text=0x7f0800a2; public static int actions=0x7f0800b0; public static int activity_chooser_view_content=0x7f08005d; public static int add=0x7f080027; public static int alertTitle=0x7f080070; public static int all=0x7f080052; public static int always=0x7f080038; public static int async=0x7f080056; public static int auto=0x7f080044; public static int beginning=0x7f08002f; public static int blocking=0x7f080057; public static int bottom=0x7f08003d; public static int buttonPanel=0x7f080063; public static int cancel_action=0x7f0800a4; public static int center=0x7f080045; public static int center_horizontal=0x7f080046; public static int center_vertical=0x7f080047; public static int checkbox=0x7f080073; public static int chronometer=0x7f0800ac; public static int clip_horizontal=0x7f08004e; public static int clip_vertical=0x7f08004f; public static int collapseActionView=0x7f080039; public static int container=0x7f080092; public static int contentPanel=0x7f080066; public static int coordinator=0x7f080093; public static int custom=0x7f08006d; public static int customPanel=0x7f08006c; public static int decor_content_parent=0x7f08007a; public static int default_activity_button=0x7f080060; public static int design_bottom_sheet=0x7f080095; public static int design_menu_item_action_area=0x7f08009c; public static int design_menu_item_action_area_stub=0x7f08009b; public static int design_menu_item_text=0x7f08009a; public static int design_navigation_view=0x7f080099; public static int disableHome=0x7f080020; public static int drawer_layout=0x7f08008b; public static int edit_query=0x7f08007e; public static int end=0x7f080030; public static int end_padder=0x7f0800b2; public static int enterAlways=0x7f08003f; public static int enterAlwaysCollapsed=0x7f080040; public static int exitUntilCollapsed=0x7f080041; public static int expand_activities_button=0x7f08005e; public static int expanded_menu=0x7f080072; public static int fab=0x7f08008e; public static int fill=0x7f080050; public static int fill_horizontal=0x7f080051; public static int fill_vertical=0x7f080048; public static int fixed=0x7f080054; public static int forever=0x7f080058; public static int ghost_view=0x7f08000a; public static int home=0x7f080005; public static int homeAsUp=0x7f080021; public static int icon=0x7f080062; public static int icon_group=0x7f0800b1; public static int ifRoom=0x7f08003a; public static int image=0x7f08005f; public static int imageView=0x7f08009e; public static int info=0x7f0800ad; public static int italic=0x7f080059; public static int item_touch_helper_previous_elevation=0x7f080000; public static int largeLabel=0x7f080091; public static int left=0x7f080049; public static int line1=0x7f080017; public static int line3=0x7f080018; public static int listMode=0x7f08001d; public static int list_item=0x7f080061; public static int masked=0x7f0800b5; public static int media_actions=0x7f0800a6; public static int message=0x7f0800b3; public static int middle=0x7f080031; public static int mini=0x7f080053; public static int multiply=0x7f080028; public static int nav_camera=0x7f0800b6; public static int nav_gallery=0x7f0800b7; public static int nav_manage=0x7f0800b9; public static int nav_send=0x7f0800bb; public static int nav_share=0x7f0800ba; public static int nav_slideshow=0x7f0800b8; public static int nav_view=0x7f08008c; public static int navigation_header_container=0x7f080098; public static int never=0x7f08003b; public static int none=0x7f080022; public static int normal=0x7f08001e; public static int notification_background=0x7f0800af; public static int notification_main_column=0x7f0800a9; public static int notification_main_column_container=0x7f0800a8; public static int parallax=0x7f08004c; public static int parentPanel=0x7f080065; public static int parent_matrix=0x7f08000b; public static int pin=0x7f08004d; public static int progress_circular=0x7f080006; public static int progress_horizontal=0x7f080007; public static int radio=0x7f080075; public static int right=0x7f08004a; public static int right_icon=0x7f0800ae; public static int right_side=0x7f0800aa; public static int save_image_matrix=0x7f08000c; public static int save_non_transition_alpha=0x7f08000d; public static int save_scale_type=0x7f08000e; public static int screen=0x7f080029; public static int scroll=0x7f080042; public static int scrollIndicatorDown=0x7f08006b; public static int scrollIndicatorUp=0x7f080067; public static int scrollView=0x7f080068; public static int scrollable=0x7f080055; public static int search_badge=0x7f080080; public static int search_bar=0x7f08007f; public static int search_button=0x7f080081; public static int search_close_btn=0x7f080086; public static int search_edit_frame=0x7f080082; public static int search_go_btn=0x7f080088; public static int search_mag_icon=0x7f080083; public static int search_plate=0x7f080084; public static int search_src_text=0x7f080085; public static int search_voice_btn=0x7f080089; public static int select_dialog_listview=0x7f08008a; public static int shortcut=0x7f080074; public static int showCustom=0x7f080023; public static int showHome=0x7f080024; public static int showTitle=0x7f080025; public static int smallLabel=0x7f080090; public static int snackbar_action=0x7f080097; public static int snackbar_text=0x7f080096; public static int snap=0x7f080043; public static int spacer=0x7f080064; public static int split_action_bar=0x7f080008; public static int src_atop=0x7f08002a; public static int src_in=0x7f08002b; public static int src_over=0x7f08002c; public static int start=0x7f08004b; public static int status_bar_latest_event_content=0x7f0800a5; public static int submenuarrow=0x7f080076; public static int submit_area=0x7f080087; public static int tabMode=0x7f08001f; public static int tag_transition_group=0x7f080019; public static int text=0x7f08001a; public static int text2=0x7f08001b; public static int textSpacerNoButtons=0x7f08006a; public static int textSpacerNoTitle=0x7f080069; public static int textView=0x7f08009f; public static int text_input_password_toggle=0x7f08009d; public static int textinput_counter=0x7f080014; public static int textinput_error=0x7f080015; public static int time=0x7f0800ab; public static int title=0x7f08001c; public static int titleDividerNoCustom=0x7f080071; public static int title_template=0x7f08006f; public static int toolbar=0x7f08008d; public static int top=0x7f08003e; public static int topPanel=0x7f08006e; public static int touch_outside=0x7f080094; public static int transition_current_scene=0x7f08000f; public static int transition_layout_save=0x7f080010; public static int transition_position=0x7f080011; public static int transition_scene_layoutid_cache=0x7f080012; public static int transition_transform=0x7f080013; public static int txtModelo=0x7f08008f; public static int uniform=0x7f08002d; public static int up=0x7f080009; public static int useLogo=0x7f080026; public static int view_offset_helper=0x7f080016; public static int visible=0x7f0800b4; public static int withText=0x7f08003c; public static int wrap_content=0x7f08002e; } public static final class integer { public static int abc_config_activityDefaultDur=0x7f0d0000; public static int abc_config_activityShortDur=0x7f0d0001; public static int app_bar_elevation_anim_duration=0x7f0d0005; public static int bottom_sheet_slide_duration=0x7f0d0006; public static int cancel_button_image_alpha=0x7f0d0002; public static int config_tooltipAnimTime=0x7f0d0003; public static int design_snackbar_text_max_lines=0x7f0d0004; public static int hide_password_duration=0x7f0d0007; public static int show_password_duration=0x7f0d0008; public static int status_bar_notification_info_maxnum=0x7f0d0009; } public static final class layout { public static int abc_action_bar_title_item=0x7f040000; public static int abc_action_bar_up_container=0x7f040001; public static int abc_action_menu_item_layout=0x7f040002; public static int abc_action_menu_layout=0x7f040003; public static int abc_action_mode_bar=0x7f040004; public static int abc_action_mode_close_item_material=0x7f040005; public static int abc_activity_chooser_view=0x7f040006; public static int abc_activity_chooser_view_list_item=0x7f040007; public static int abc_alert_dialog_button_bar_material=0x7f040008; public static int abc_alert_dialog_material=0x7f040009; public static int abc_alert_dialog_title_material=0x7f04000a; public static int abc_dialog_title_material=0x7f04000b; public static int abc_expanded_menu_layout=0x7f04000c; public static int abc_list_menu_item_checkbox=0x7f04000d; public static int abc_list_menu_item_icon=0x7f04000e; public static int abc_list_menu_item_layout=0x7f04000f; public static int abc_list_menu_item_radio=0x7f040010; public static int abc_popup_menu_header_item_layout=0x7f040011; public static int abc_popup_menu_item_layout=0x7f040012; public static int abc_screen_content_include=0x7f040013; public static int abc_screen_simple=0x7f040014; public static int abc_screen_simple_overlay_action_mode=0x7f040015; public static int abc_screen_toolbar=0x7f040016; public static int abc_search_dropdown_item_icons_2line=0x7f040017; public static int abc_search_view=0x7f040018; public static int abc_select_dialog_material=0x7f040019; public static int activity_main=0x7f04001a; public static int app_bar_main=0x7f04001b; public static int content_main=0x7f04001c; public static int design_bottom_navigation_item=0x7f04001d; public static int design_bottom_sheet_dialog=0x7f04001e; public static int design_layout_snackbar=0x7f04001f; public static int design_layout_snackbar_include=0x7f040020; public static int design_layout_tab_icon=0x7f040021; public static int design_layout_tab_text=0x7f040022; public static int design_menu_item_action_area=0x7f040023; public static int design_navigation_item=0x7f040024; public static int design_navigation_item_header=0x7f040025; public static int design_navigation_item_separator=0x7f040026; public static int design_navigation_item_subheader=0x7f040027; public static int design_navigation_menu=0x7f040028; public static int design_navigation_menu_item=0x7f040029; public static int design_text_input_password_icon=0x7f04002a; public static int nav_header_main=0x7f04002b; public static int notification_action=0x7f04002c; public static int notification_action_tombstone=0x7f04002d; public static int notification_media_action=0x7f04002e; public static int notification_media_cancel_action=0x7f04002f; public static int notification_template_big_media=0x7f040030; public static int notification_template_big_media_custom=0x7f040031; public static int notification_template_big_media_narrow=0x7f040032; public static int notification_template_big_media_narrow_custom=0x7f040033; public static int notification_template_custom_big=0x7f040034; public static int notification_template_icon_group=0x7f040035; public static int notification_template_lines_media=0x7f040036; public static int notification_template_media=0x7f040037; public static int notification_template_media_custom=0x7f040038; public static int notification_template_part_chronometer=0x7f040039; public static int notification_template_part_time=0x7f04003a; public static int select_dialog_item_material=0x7f04003b; public static int select_dialog_multichoice_material=0x7f04003c; public static int select_dialog_singlechoice_material=0x7f04003d; public static int support_simple_spinner_dropdown_item=0x7f04003e; public static int tooltip=0x7f04003f; } public static final class menu { public static int activity_main_drawer=0x7f0e0000; public static int menu_main=0x7f0e0001; } public static final class mipmap { public static int ic_launcher=0x7f030000; public static int ic_launcher_foreground=0x7f030001; public static int ic_launcher_round=0x7f030002; } public static final class string { public static int abc_action_bar_home_description=0x7f090000; public static int abc_action_bar_up_description=0x7f090001; public static int abc_action_menu_overflow_description=0x7f090002; public static int abc_action_mode_done=0x7f090003; public static int abc_activity_chooser_view_see_all=0x7f090004; public static int abc_activitychooserview_choose_application=0x7f090005; public static int abc_capital_off=0x7f090006; public static int abc_capital_on=0x7f090007; public static int abc_font_family_body_1_material=0x7f090012; public static int abc_font_family_body_2_material=0x7f090013; public static int abc_font_family_button_material=0x7f090014; public static int abc_font_family_caption_material=0x7f090015; public static int abc_font_family_display_1_material=0x7f090016; public static int abc_font_family_display_2_material=0x7f090017; public static int abc_font_family_display_3_material=0x7f090018; public static int abc_font_family_display_4_material=0x7f090019; public static int abc_font_family_headline_material=0x7f09001a; public static int abc_font_family_menu_material=0x7f09001b; public static int abc_font_family_subhead_material=0x7f09001c; public static int abc_font_family_title_material=0x7f09001d; public static int abc_search_hint=0x7f090008; public static int abc_searchview_description_clear=0x7f090009; public static int abc_searchview_description_query=0x7f09000a; public static int abc_searchview_description_search=0x7f09000b; public static int abc_searchview_description_submit=0x7f09000c; public static int abc_searchview_description_voice=0x7f09000d; public static int abc_shareactionprovider_share_with=0x7f09000e; public static int abc_shareactionprovider_share_with_application=0x7f09000f; public static int abc_toolbar_collapse_description=0x7f090010; public static int action_settings=0x7f09002a; public static int app_name=0x7f090027; public static int appbar_scrolling_view_behavior=0x7f09001e; public static int bottom_sheet_behavior=0x7f09001f; public static int character_counter_pattern=0x7f090020; public static int navigation_drawer_close=0x7f090029; public static int navigation_drawer_open=0x7f090028; public static int password_toggle_content_description=0x7f090021; public static int path_password_eye=0x7f090022; public static int path_password_eye_mask_strike_through=0x7f090023; public static int path_password_eye_mask_visible=0x7f090024; public static int path_password_strike_through=0x7f090025; public static int search_menu_title=0x7f090011; public static int status_bar_notification_info_overflow=0x7f090026; } public static final class style { public static int AlertDialog_AppCompat=0x7f0a0095; public static int AlertDialog_AppCompat_Light=0x7f0a0096; public static int Animation_AppCompat_Dialog=0x7f0a0097; public static int Animation_AppCompat_DropDownUp=0x7f0a0098; public static int Animation_AppCompat_Tooltip=0x7f0a0099; public static int Animation_Design_BottomSheetDialog=0x7f0a015f; /** Base application theme. */ public static int AppTheme=0x7f0a0180; public static int AppTheme_AppBarOverlay=0x7f0a0182; public static int AppTheme_NoActionBar=0x7f0a0181; public static int AppTheme_PopupOverlay=0x7f0a0183; public static int Base_AlertDialog_AppCompat=0x7f0a009a; public static int Base_AlertDialog_AppCompat_Light=0x7f0a009b; public static int Base_Animation_AppCompat_Dialog=0x7f0a009c; public static int Base_Animation_AppCompat_DropDownUp=0x7f0a009d; public static int Base_Animation_AppCompat_Tooltip=0x7f0a009e; public static int Base_DialogWindowTitle_AppCompat=0x7f0a009f; public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00a0; public static int Base_TextAppearance_AppCompat=0x7f0a0039; public static int Base_TextAppearance_AppCompat_Body1=0x7f0a003a; public static int Base_TextAppearance_AppCompat_Body2=0x7f0a003b; public static int Base_TextAppearance_AppCompat_Button=0x7f0a0027; public static int Base_TextAppearance_AppCompat_Caption=0x7f0a003c; public static int Base_TextAppearance_AppCompat_Display1=0x7f0a003d; public static int Base_TextAppearance_AppCompat_Display2=0x7f0a003e; public static int Base_TextAppearance_AppCompat_Display3=0x7f0a003f; public static int Base_TextAppearance_AppCompat_Display4=0x7f0a0040; public static int Base_TextAppearance_AppCompat_Headline=0x7f0a0041; public static int Base_TextAppearance_AppCompat_Inverse=0x7f0a000b; public static int Base_TextAppearance_AppCompat_Large=0x7f0a0042; public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000c; public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0043; public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a0044; public static int Base_TextAppearance_AppCompat_Medium=0x7f0a0045; public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000d; public static int Base_TextAppearance_AppCompat_Menu=0x7f0a0046; public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00a1; public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0047; public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0048; public static int Base_TextAppearance_AppCompat_Small=0x7f0a0049; public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000e; public static int Base_TextAppearance_AppCompat_Subhead=0x7f0a004a; public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a000f; public static int Base_TextAppearance_AppCompat_Title=0x7f0a004b; public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0010; public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0a00a2; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0086; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a004c; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a004d; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a004e; public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a004f; public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0050; public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0051; public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0052; public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a008d; public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a008e; public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0087; public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00a3; public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a0053; public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a0054; public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a0055; public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a0056; public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0057; public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00a4; public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0058; public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0059; public static int Base_Theme_AppCompat=0x7f0a005a; public static int Base_Theme_AppCompat_CompactMenu=0x7f0a00a5; public static int Base_Theme_AppCompat_Dialog=0x7f0a0011; public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0012; public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00a6; public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0013; public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0001; public static int Base_Theme_AppCompat_Light=0x7f0a005b; public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00a7; public static int Base_Theme_AppCompat_Light_Dialog=0x7f0a0014; public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0015; public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00a8; public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0016; public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0002; public static int Base_ThemeOverlay_AppCompat=0x7f0a00a9; public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00aa; public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00ab; public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00ac; public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0a0017; public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0018; public static int Base_ThemeOverlay_AppCompat_Light=0x7f0a00ad; public static int Base_V11_Theme_AppCompat_Dialog=0x7f0a0019; public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a001a; public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0a001b; public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0023; public static int Base_V12_Widget_AppCompat_EditText=0x7f0a0024; public static int Base_V14_Widget_Design_AppBarLayout=0x7f0a0160; public static int Base_V21_Theme_AppCompat=0x7f0a005c; public static int Base_V21_Theme_AppCompat_Dialog=0x7f0a005d; public static int Base_V21_Theme_AppCompat_Light=0x7f0a005e; public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a005f; public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0a0060; public static int Base_V21_Widget_Design_AppBarLayout=0x7f0a015c; public static int Base_V22_Theme_AppCompat=0x7f0a0084; public static int Base_V22_Theme_AppCompat_Light=0x7f0a0085; public static int Base_V23_Theme_AppCompat=0x7f0a0088; public static int Base_V23_Theme_AppCompat_Light=0x7f0a0089; public static int Base_V26_Theme_AppCompat=0x7f0a0091; public static int Base_V26_Theme_AppCompat_Light=0x7f0a0092; public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0a0093; public static int Base_V26_Widget_Design_AppBarLayout=0x7f0a015e; public static int Base_V7_Theme_AppCompat=0x7f0a00ae; public static int Base_V7_Theme_AppCompat_Dialog=0x7f0a00af; public static int Base_V7_Theme_AppCompat_Light=0x7f0a00b0; public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00b1; public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0a00b2; public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00b3; public static int Base_V7_Widget_AppCompat_EditText=0x7f0a00b4; public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0a00b5; public static int Base_Widget_AppCompat_ActionBar=0x7f0a00b6; public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00b7; public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00b8; public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0061; public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0062; public static int Base_Widget_AppCompat_ActionButton=0x7f0a0063; public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a0064; public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a0065; public static int Base_Widget_AppCompat_ActionMode=0x7f0a00b9; public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00ba; public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0025; public static int Base_Widget_AppCompat_Button=0x7f0a0066; public static int Base_Widget_AppCompat_Button_Borderless=0x7f0a0067; public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0068; public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00bb; public static int Base_Widget_AppCompat_Button_Colored=0x7f0a008a; public static int Base_Widget_AppCompat_Button_Small=0x7f0a0069; public static int Base_Widget_AppCompat_ButtonBar=0x7f0a006a; public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00bc; public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a006b; public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a006c; public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00bd; public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000; public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00be; public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a006d; public static int Base_Widget_AppCompat_EditText=0x7f0a0026; public static int Base_Widget_AppCompat_ImageButton=0x7f0a006e; public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00bf; public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00c0; public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00c1; public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a006f; public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0070; public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0071; public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0072; public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0073; public static int Base_Widget_AppCompat_ListMenuView=0x7f0a00c2; public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0a0074; public static int Base_Widget_AppCompat_ListView=0x7f0a0075; public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0a0076; public static int Base_Widget_AppCompat_ListView_Menu=0x7f0a0077; public static int Base_Widget_AppCompat_PopupMenu=0x7f0a0078; public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0079; public static int Base_Widget_AppCompat_PopupWindow=0x7f0a00c3; public static int Base_Widget_AppCompat_ProgressBar=0x7f0a001c; public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a001d; public static int Base_Widget_AppCompat_RatingBar=0x7f0a007a; public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a008b; public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0a008c; public static int Base_Widget_AppCompat_SearchView=0x7f0a00c4; public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00c5; public static int Base_Widget_AppCompat_SeekBar=0x7f0a007b; public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0a00c6; public static int Base_Widget_AppCompat_Spinner=0x7f0a007c; public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0003; public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a007d; public static int Base_Widget_AppCompat_Toolbar=0x7f0a0094; public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a007e; public static int Base_Widget_Design_AppBarLayout=0x7f0a015d; public static int Base_Widget_Design_TabLayout=0x7f0a0161; public static int Platform_AppCompat=0x7f0a001e; public static int Platform_AppCompat_Light=0x7f0a001f; public static int Platform_ThemeOverlay_AppCompat=0x7f0a007f; public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0080; public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0081; public static int Platform_V11_AppCompat=0x7f0a0020; public static int Platform_V11_AppCompat_Light=0x7f0a0021; public static int Platform_V14_AppCompat=0x7f0a0028; public static int Platform_V14_AppCompat_Light=0x7f0a0029; public static int Platform_V21_AppCompat=0x7f0a0082; public static int Platform_V21_AppCompat_Light=0x7f0a0083; public static int Platform_V25_AppCompat=0x7f0a008f; public static int Platform_V25_AppCompat_Light=0x7f0a0090; public static int Platform_Widget_AppCompat_Spinner=0x7f0a0022; public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a002b; public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a002c; public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a002d; public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a002e; public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a002f; public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0030; public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0031; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0032; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0033; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a0034; public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a0035; public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a0036; public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a0037; public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0038; public static int TextAppearance_AppCompat=0x7f0a00c7; public static int TextAppearance_AppCompat_Body1=0x7f0a00c8; public static int TextAppearance_AppCompat_Body2=0x7f0a00c9; public static int TextAppearance_AppCompat_Button=0x7f0a00ca; public static int TextAppearance_AppCompat_Caption=0x7f0a00cb; public static int TextAppearance_AppCompat_Display1=0x7f0a00cc; public static int TextAppearance_AppCompat_Display2=0x7f0a00cd; public static int TextAppearance_AppCompat_Display3=0x7f0a00ce; public static int TextAppearance_AppCompat_Display4=0x7f0a00cf; public static int TextAppearance_AppCompat_Headline=0x7f0a00d0; public static int TextAppearance_AppCompat_Inverse=0x7f0a00d1; public static int TextAppearance_AppCompat_Large=0x7f0a00d2; public static int TextAppearance_AppCompat_Large_Inverse=0x7f0a00d3; public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00d4; public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00d5; public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00d6; public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00d7; public static int TextAppearance_AppCompat_Medium=0x7f0a00d8; public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00d9; public static int TextAppearance_AppCompat_Menu=0x7f0a00da; public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00db; public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00dc; public static int TextAppearance_AppCompat_Small=0x7f0a00dd; public static int TextAppearance_AppCompat_Small_Inverse=0x7f0a00de; public static int TextAppearance_AppCompat_Subhead=0x7f0a00df; public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00e0; public static int TextAppearance_AppCompat_Title=0x7f0a00e1; public static int TextAppearance_AppCompat_Title_Inverse=0x7f0a00e2; public static int TextAppearance_AppCompat_Tooltip=0x7f0a002a; public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00e3; public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00e4; public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00e5; public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00e6; public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00e7; public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00e8; public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00e9; public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00ea; public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00eb; public static int TextAppearance_AppCompat_Widget_Button=0x7f0a00ec; public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a00ed; public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a00ee; public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00ef; public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f0; public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a00f1; public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00f2; public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00f3; public static int TextAppearance_AppCompat_Widget_Switch=0x7f0a00f4; public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00f5; public static int TextAppearance_Compat_Notification=0x7f0a0179; public static int TextAppearance_Compat_Notification_Info=0x7f0a017a; public static int TextAppearance_Compat_Notification_Info_Media=0x7f0a0156; public static int TextAppearance_Compat_Notification_Line2=0x7f0a017f; public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0a015a; public static int TextAppearance_Compat_Notification_Media=0x7f0a0157; public static int TextAppearance_Compat_Notification_Time=0x7f0a017b; public static int TextAppearance_Compat_Notification_Time_Media=0x7f0a0158; public static int TextAppearance_Compat_Notification_Title=0x7f0a017c; public static int TextAppearance_Compat_Notification_Title_Media=0x7f0a0159; public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a0162; public static int TextAppearance_Design_Counter=0x7f0a0163; public static int TextAppearance_Design_Counter_Overflow=0x7f0a0164; public static int TextAppearance_Design_Error=0x7f0a0165; public static int TextAppearance_Design_Hint=0x7f0a0166; public static int TextAppearance_Design_Snackbar_Message=0x7f0a0167; public static int TextAppearance_Design_Tab=0x7f0a0168; public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00f6; public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00f7; public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00f8; public static int Theme_AppCompat=0x7f0a00f9; public static int Theme_AppCompat_CompactMenu=0x7f0a00fa; public static int Theme_AppCompat_DayNight=0x7f0a0004; public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0005; public static int Theme_AppCompat_DayNight_Dialog=0x7f0a0006; public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0007; public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0008; public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0009; public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000a; public static int Theme_AppCompat_Dialog=0x7f0a00fb; public static int Theme_AppCompat_Dialog_Alert=0x7f0a00fc; public static int Theme_AppCompat_Dialog_MinWidth=0x7f0a00fd; public static int Theme_AppCompat_DialogWhenLarge=0x7f0a00fe; public static int Theme_AppCompat_Light=0x7f0a00ff; public static int Theme_AppCompat_Light_DarkActionBar=0x7f0a0100; public static int Theme_AppCompat_Light_Dialog=0x7f0a0101; public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0a0102; public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0103; public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0104; public static int Theme_AppCompat_Light_NoActionBar=0x7f0a0105; public static int Theme_AppCompat_NoActionBar=0x7f0a0106; public static int Theme_Design=0x7f0a0169; public static int Theme_Design_BottomSheetDialog=0x7f0a016a; public static int Theme_Design_Light=0x7f0a016b; public static int Theme_Design_Light_BottomSheetDialog=0x7f0a016c; public static int Theme_Design_Light_NoActionBar=0x7f0a016d; public static int Theme_Design_NoActionBar=0x7f0a016e; public static int ThemeOverlay_AppCompat=0x7f0a0107; public static int ThemeOverlay_AppCompat_ActionBar=0x7f0a0108; public static int ThemeOverlay_AppCompat_Dark=0x7f0a0109; public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a010a; public static int ThemeOverlay_AppCompat_Dialog=0x7f0a010b; public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a010c; public static int ThemeOverlay_AppCompat_Light=0x7f0a010d; public static int Widget_AppCompat_ActionBar=0x7f0a010e; public static int Widget_AppCompat_ActionBar_Solid=0x7f0a010f; public static int Widget_AppCompat_ActionBar_TabBar=0x7f0a0110; public static int Widget_AppCompat_ActionBar_TabText=0x7f0a0111; public static int Widget_AppCompat_ActionBar_TabView=0x7f0a0112; public static int Widget_AppCompat_ActionButton=0x7f0a0113; public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0114; public static int Widget_AppCompat_ActionButton_Overflow=0x7f0a0115; public static int Widget_AppCompat_ActionMode=0x7f0a0116; public static int Widget_AppCompat_ActivityChooserView=0x7f0a0117; public static int Widget_AppCompat_AutoCompleteTextView=0x7f0a0118; public static int Widget_AppCompat_Button=0x7f0a0119; public static int Widget_AppCompat_Button_Borderless=0x7f0a011a; public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0a011b; public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a011c; public static int Widget_AppCompat_Button_Colored=0x7f0a011d; public static int Widget_AppCompat_Button_Small=0x7f0a011e; public static int Widget_AppCompat_ButtonBar=0x7f0a011f; public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0120; public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0121; public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0122; public static int Widget_AppCompat_CompoundButton_Switch=0x7f0a0123; public static int Widget_AppCompat_DrawerArrowToggle=0x7f0a0124; public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0a0125; public static int Widget_AppCompat_EditText=0x7f0a0126; public static int Widget_AppCompat_ImageButton=0x7f0a0127; public static int Widget_AppCompat_Light_ActionBar=0x7f0a0128; public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0129; public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012a; public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a012b; public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a012c; public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a012d; public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a012e; public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a012f; public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0130; public static int Widget_AppCompat_Light_ActionButton=0x7f0a0131; public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0132; public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0133; public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0134; public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0a0135; public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a0136; public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a0137; public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0a0138; public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0139; public static int Widget_AppCompat_Light_PopupMenu=0x7f0a013a; public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a013b; public static int Widget_AppCompat_Light_SearchView=0x7f0a013c; public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a013d; public static int Widget_AppCompat_ListMenuView=0x7f0a013e; public static int Widget_AppCompat_ListPopupWindow=0x7f0a013f; public static int Widget_AppCompat_ListView=0x7f0a0140; public static int Widget_AppCompat_ListView_DropDown=0x7f0a0141; public static int Widget_AppCompat_ListView_Menu=0x7f0a0142; public static int Widget_AppCompat_PopupMenu=0x7f0a0143; public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0144; public static int Widget_AppCompat_PopupWindow=0x7f0a0145; public static int Widget_AppCompat_ProgressBar=0x7f0a0146; public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0147; public static int Widget_AppCompat_RatingBar=0x7f0a0148; public static int Widget_AppCompat_RatingBar_Indicator=0x7f0a0149; public static int Widget_AppCompat_RatingBar_Small=0x7f0a014a; public static int Widget_AppCompat_SearchView=0x7f0a014b; public static int Widget_AppCompat_SearchView_ActionBar=0x7f0a014c; public static int Widget_AppCompat_SeekBar=0x7f0a014d; public static int Widget_AppCompat_SeekBar_Discrete=0x7f0a014e; public static int Widget_AppCompat_Spinner=0x7f0a014f; public static int Widget_AppCompat_Spinner_DropDown=0x7f0a0150; public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0151; public static int Widget_AppCompat_Spinner_Underlined=0x7f0a0152; public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0153; public static int Widget_AppCompat_Toolbar=0x7f0a0154; public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0155; public static int Widget_Compat_NotificationActionContainer=0x7f0a017d; public static int Widget_Compat_NotificationActionText=0x7f0a017e; public static int Widget_Design_AppBarLayout=0x7f0a016f; public static int Widget_Design_BottomNavigationView=0x7f0a0170; public static int Widget_Design_BottomSheet_Modal=0x7f0a0171; public static int Widget_Design_CollapsingToolbar=0x7f0a0172; public static int Widget_Design_CoordinatorLayout=0x7f0a0173; public static int Widget_Design_FloatingActionButton=0x7f0a0174; public static int Widget_Design_NavigationView=0x7f0a0175; public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0a0176; public static int Widget_Design_Snackbar=0x7f0a0177; public static int Widget_Design_TabLayout=0x7f0a015b; public static int Widget_Design_TextInputLayout=0x7f0a0178; } 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 android.support.design:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit android.support.design:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked android.support.design:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd android.support.design:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.design:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft android.support.design:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight android.support.design:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart android.support.design:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.design:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout android.support.design:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions android.support.design:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider android.support.design:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation android.support.design:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height android.support.design:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.design:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.design:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout android.support.design:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon android.support.design:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.design:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding android.support.design:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo android.support.design:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode android.support.design:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme android.support.design:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding android.support.design:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle android.support.design:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle android.support.design:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.design:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title android.support.design:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle android.support.design: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 = { 0x7f01000a, 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, 0x7f01006c }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:background */ public static int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:backgroundSplit */ public static int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:backgroundStacked */ public static int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetEnd */ public static int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetEndWithActions */ public static int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetLeft */ public static int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetRight */ public static int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetStart */ public static int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetStartWithNavigation */ public static int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:customNavigationLayout */ public static int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:displayOptions */ public static int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:divider */ public static int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:elevation */ public static int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:height */ public static int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:hideOnContentScroll */ public static int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:homeAsUpIndicator */ public static int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:homeLayout */ public static int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:icon */ public static int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:indeterminateProgressStyle */ public static int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemPadding */ public static int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:logo */ public static int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:navigationMode */ public static int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:popupTheme */ public static int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:progressBarPadding */ public static int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:progressBarStyle */ public static int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subtitle */ public static int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subtitleTextStyle */ public static int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:title */ public static int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleTextStyle */ public static 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 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 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 android.support.design:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit android.support.design:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout android.support.design:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height android.support.design:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.design:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle android.support.design: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 = { 0x7f01000a, 0x7f010010, 0x7f010011, 0x7f010015, 0x7f010017, 0x7f010027 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:background */ public static int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:backgroundSplit */ public static int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:closeItemLayout */ public static int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:height */ public static int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subtitleTextStyle */ public static int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleTextStyle */ public static 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 android.support.design:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.design:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f010028, 0x7f010029 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandActivityOverflowButtonDrawable */ public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:initialActivityCount */ public static 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 android.support.design:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout android.support.design:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout android.support.design:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.design:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle android.support.design:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.design: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, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f }; /** <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 int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonPanelSideLayout */ public static int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listItemLayout */ public static int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listLayout */ public static int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:multiChoiceItemLayout */ public static int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:showTitle */ public static int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:singleChoiceItemLayout */ public static 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_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation android.support.design:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded android.support.design:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_android_keyboardNavigationCluster @see #AppBarLayout_android_touchscreenBlocksFocus @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x0101048f, 0x01010540, 0x7f010025, 0x7f0100ff }; /** <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 int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:keyboardNavigationCluster */ public static int AppBarLayout_android_keyboardNavigationCluster = 2; /** <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:touchscreenBlocksFocus */ public static int AppBarLayout_android_touchscreenBlocksFocus = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:elevation */ public static int AppBarLayout_elevation = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expanded */ public static int AppBarLayout_expanded = 4; /** 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 android.support.design:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.design:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010100, 0x7f010101 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:state_collapsed */ public static int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:state_collapsible */ public static 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 android.support.design:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.design:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010102, 0x7f010103 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_scrollFlags */ public static int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_scrollInterpolator */ public static 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 android.support.design:srcCompat}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tint android.support.design:tint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode android.support.design:tintMode}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat @see #AppCompatImageView_tint @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010030, 0x7f010031, 0x7f010032 }; /** <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 int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:srcCompat */ public static int AppCompatImageView_srcCompat = 1; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#tint} attribute's value can be found in the {@link #AppCompatImageView} 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 android.support.design:tint */ public static int AppCompatImageView_tint = 2; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#tintMode} attribute's value can be found in the {@link #AppCompatImageView} 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 android.support.design:tintMode */ public static int AppCompatImageView_tintMode = 3; /** 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 android.support.design:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.design:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.design: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, 0x7f010033, 0x7f010034, 0x7f010035 }; /** <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 int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tickMark */ public static int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tickMarkTint */ public static int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tickMarkTintMode */ public static 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 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 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 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 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 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 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 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_autoSizeMaxTextSize android.support.design:autoSizeMaxTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.design:autoSizeMinTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.design:autoSizePresetSizes}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.design:autoSizeStepGranularity}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.design:autoSizeTextType}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_fontFamily android.support.design:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.design:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_autoSizeMaxTextSize @see #AppCompatTextView_autoSizeMinTextSize @see #AppCompatTextView_autoSizePresetSizes @see #AppCompatTextView_autoSizeStepGranularity @see #AppCompatTextView_autoSizeTextType @see #AppCompatTextView_fontFamily @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c }; /** <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 int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeMaxTextSize} attribute's value can be found in the {@link #AppCompatTextView} 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 android.support.design:autoSizeMaxTextSize */ public static int AppCompatTextView_autoSizeMaxTextSize = 6; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeMinTextSize} attribute's value can be found in the {@link #AppCompatTextView} 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 android.support.design:autoSizeMinTextSize */ public static int AppCompatTextView_autoSizeMinTextSize = 5; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizePresetSizes} attribute's value can be found in the {@link #AppCompatTextView} 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 android.support.design:autoSizePresetSizes */ public static int AppCompatTextView_autoSizePresetSizes = 4; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeStepGranularity} attribute's value can be found in the {@link #AppCompatTextView} 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 android.support.design:autoSizeStepGranularity */ public static int AppCompatTextView_autoSizeStepGranularity = 3; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeTextType} attribute's value can be found in the {@link #AppCompatTextView} 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>uniform</code></td><td>1</td><td></td></tr> </table> @attr name android.support.design:autoSizeTextType */ public static int AppCompatTextView_autoSizeTextType = 2; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontFamily} attribute's value can be found in the {@link #AppCompatTextView} 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 android.support.design:fontFamily */ public static int AppCompatTextView_fontFamily = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAllCaps */ public static 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 android.support.design:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.design:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.design:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.design:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.design:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.design:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.design:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.design:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.design:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.design:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.design:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.design:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.design:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.design:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.design:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.design:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.design:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.design:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.design:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.design:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.design:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.design:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.design:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.design:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.design:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.design:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.design:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.design:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.design:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.design:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.design:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.design:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.design:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.design:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.design: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 android.support.design:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.design:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.design:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.design:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.design:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.design:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.design:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.design:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.design:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.design:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.design:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent android.support.design:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.design:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.design:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.design:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.design:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.design:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorError android.support.design:colorError}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.design:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.design:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.design:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground android.support.design:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.design:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.design:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.design:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.design:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.design:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.design:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.design:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor android.support.design:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.design:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.design:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.design:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.design:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.design:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.design:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.design:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.design:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.design:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.design:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.design:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.design:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground android.support.design:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.design:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.design:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.design:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.design:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.design:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.design:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.design:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.design:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.design:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.design:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.design:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.design:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.design:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.design:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle android.support.design:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.design:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.design:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.design:textAppearanceListItemSecondary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.design:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.design:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.design:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.design:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.design:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.design:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.design:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.design:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.design:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.design:tooltipForegroundColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.design:tooltipFrameBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.design:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.design:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.design:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.design:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.design:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.design:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.design:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.design:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.design:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.design: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_colorError @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_textAppearanceListItemSecondary @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_tooltipForegroundColor @see #AppCompatTheme_tooltipFrameBackground @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, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 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 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarDivider */ public static int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarItemBackground */ public static int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarPopupTheme */ public static int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarSize */ public static int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarSplitStyle */ public static int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarStyle */ public static int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarTabBarStyle */ public static int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarTabStyle */ public static int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarTabTextStyle */ public static int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarTheme */ public static int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionBarWidgetTheme */ public static int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionButtonStyle */ public static int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionDropDownStyle */ public static int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionMenuTextAppearance */ public static int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionMenuTextColor */ public static int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeBackground */ public static int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeCloseButtonStyle */ public static int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeCloseDrawable */ public static int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeCopyDrawable */ public static int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeCutDrawable */ public static int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeFindDrawable */ public static int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModePasteDrawable */ public static int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModePopupWindowStyle */ public static int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeSelectAllDrawable */ public static int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeShareDrawable */ public static int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeSplitBackground */ public static int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeStyle */ public static int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionModeWebSearchDrawable */ public static int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionOverflowButtonStyle */ public static int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionOverflowMenuStyle */ public static int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:activityChooserViewStyle */ public static int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:alertDialogButtonGroupStyle */ public static int AppCompatTheme_alertDialogButtonGroupStyle = 95; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:alertDialogCenterButtons */ public static int AppCompatTheme_alertDialogCenterButtons = 96; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:alertDialogStyle */ public static int AppCompatTheme_alertDialogStyle = 94; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:alertDialogTheme */ public static int AppCompatTheme_alertDialogTheme = 97; /** <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 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 int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:autoCompleteTextViewStyle */ public static int AppCompatTheme_autoCompleteTextViewStyle = 102; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:borderlessButtonStyle */ public static int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonBarButtonStyle */ public static int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonBarNegativeButtonStyle */ public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonBarNeutralButtonStyle */ public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonBarPositiveButtonStyle */ public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonBarStyle */ public static int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonStyle */ public static int AppCompatTheme_buttonStyle = 103; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonStyleSmall */ public static int AppCompatTheme_buttonStyleSmall = 104; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:checkboxStyle */ public static int AppCompatTheme_checkboxStyle = 105; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:checkedTextViewStyle */ public static int AppCompatTheme_checkedTextViewStyle = 106; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorAccent */ public static int AppCompatTheme_colorAccent = 86; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorBackgroundFloating */ public static int AppCompatTheme_colorBackgroundFloating = 93; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorButtonNormal */ public static int AppCompatTheme_colorButtonNormal = 90; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorControlActivated */ public static int AppCompatTheme_colorControlActivated = 88; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorControlHighlight */ public static int AppCompatTheme_colorControlHighlight = 89; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorControlNormal */ public static int AppCompatTheme_colorControlNormal = 87; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#colorError} 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 android.support.design:colorError */ public static int AppCompatTheme_colorError = 118; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorPrimary */ public static int AppCompatTheme_colorPrimary = 84; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorPrimaryDark */ public static int AppCompatTheme_colorPrimaryDark = 85; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:colorSwitchThumbNormal */ public static int AppCompatTheme_colorSwitchThumbNormal = 91; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:controlBackground */ public static int AppCompatTheme_controlBackground = 92; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dialogPreferredPadding */ public static int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dialogTheme */ public static int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dividerHorizontal */ public static int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dividerVertical */ public static int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dropDownListViewStyle */ public static int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dropdownListPreferredItemHeight */ public static int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:editTextBackground */ public static int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:editTextColor */ public static int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:editTextStyle */ public static int AppCompatTheme_editTextStyle = 107; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:homeAsUpIndicator */ public static int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:imageButtonStyle */ public static int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listChoiceBackgroundIndicator */ public static int AppCompatTheme_listChoiceBackgroundIndicator = 83; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listDividerAlertDialog */ public static int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listMenuViewStyle */ public static int AppCompatTheme_listMenuViewStyle = 115; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listPopupWindowStyle */ public static int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listPreferredItemHeight */ public static int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listPreferredItemHeightLarge */ public static int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listPreferredItemHeightSmall */ public static int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listPreferredItemPaddingLeft */ public static int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:listPreferredItemPaddingRight */ public static int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:panelBackground */ public static int AppCompatTheme_panelBackground = 80; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:panelMenuListTheme */ public static int AppCompatTheme_panelMenuListTheme = 82; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:panelMenuListWidth */ public static int AppCompatTheme_panelMenuListWidth = 81; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:popupMenuStyle */ public static int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:popupWindowStyle */ public static int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:radioButtonStyle */ public static int AppCompatTheme_radioButtonStyle = 108; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:ratingBarStyle */ public static int AppCompatTheme_ratingBarStyle = 109; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:ratingBarStyleIndicator */ public static int AppCompatTheme_ratingBarStyleIndicator = 110; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:ratingBarStyleSmall */ public static int AppCompatTheme_ratingBarStyleSmall = 111; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:searchViewStyle */ public static int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:seekBarStyle */ public static int AppCompatTheme_seekBarStyle = 112; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:selectableItemBackground */ public static int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:selectableItemBackgroundBorderless */ public static int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:spinnerDropDownItemStyle */ public static int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:spinnerStyle */ public static int AppCompatTheme_spinnerStyle = 113; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:switchStyle */ public static int AppCompatTheme_switchStyle = 114; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearanceLargePopupMenu */ public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearanceListItem */ public static int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceListItemSecondary} 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 android.support.design:textAppearanceListItemSecondary */ public static int AppCompatTheme_textAppearanceListItemSecondary = 78; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearanceListItemSmall */ public static int AppCompatTheme_textAppearanceListItemSmall = 79; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearancePopupMenuHeader */ public static int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearanceSearchResultSubtitle */ public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearanceSearchResultTitle */ public static int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAppearanceSmallPopupMenu */ public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textColorAlertDialogListItem */ public static int AppCompatTheme_textColorAlertDialogListItem = 98; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textColorSearchUrl */ public static int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:toolbarNavigationButtonStyle */ public static int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:toolbarStyle */ public static int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#tooltipForegroundColor} 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 android.support.design:tooltipForegroundColor */ public static int AppCompatTheme_tooltipForegroundColor = 117; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#tooltipFrameBackground} 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 android.support.design:tooltipFrameBackground */ public static int AppCompatTheme_tooltipFrameBackground = 116; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowActionBar */ public static int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowActionBarOverlay */ public static int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowActionModeOverlay */ public static int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowFixedHeightMajor */ public static int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowFixedHeightMinor */ public static int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowFixedWidthMajor */ public static int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowFixedWidthMinor */ public static int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowMinWidthMajor */ public static int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowMinWidthMinor */ public static int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:windowNoTitle */ public static 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 android.support.design:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground android.support.design:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.design:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.design:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu android.support.design: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 = { 0x7f010025, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:elevation */ public static int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemBackground */ public static int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemIconTint */ public static int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemTextColor */ public static int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:menu */ public static 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 android.support.design:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.design:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.design: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 = { 0x7f010104, 0x7f010105, 0x7f010106 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:behavior_hideable */ public static int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:behavior_peekHeight */ public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:behavior_skipCollapsed */ public static 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 android.support.design:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100b2 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:allowStacking */ public static int ButtonBarLayout_allowStacking = 0; /** 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 android.support.design:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.design:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.design:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.design:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.design:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.design:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.design:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.design:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.design:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.design:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.design:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.design:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.design:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title android.support.design:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.design:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.design: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 = { 0x7f01000c, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:collapsedTitleGravity */ public static int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:collapsedTitleTextAppearance */ public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentScrim */ public static int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleGravity */ public static int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleMargin */ public static int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleMarginBottom */ public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleMarginEnd */ public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleMarginStart */ public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleMarginTop */ public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:expandedTitleTextAppearance */ public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:scrimAnimationDuration */ public static int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:scrimVisibleHeightTrigger */ public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:statusBarScrim */ public static int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:title */ public static int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleEnabled */ public static int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:toolbarId */ public static 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 android.support.design:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.design:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_collapseMode */ public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_collapseParallaxMultiplier */ public static 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 android.support.design: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, 0x7f0100b3 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:alpha */ public static 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 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 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 android.support.design:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode android.support.design:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100b4, 0x7f0100b5 }; /** <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 int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonTint */ public static int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link android.support.design.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> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.design:buttonTintMode */ public static int CompoundButton_buttonTintMode = 2; /** 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 android.support.design:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.design:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:keylines */ public static int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:statusBarBackground */ public static 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 android.support.design:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.design:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.design:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.design:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.design:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.design: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, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f }; /** <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 int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_anchor */ public static int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_anchorGravity */ public static int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_behavior */ public static int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_dodgeInsetEdges */ public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_insetEdge */ public static int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout_keyline */ public static 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 android.support.design:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.design:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError android.support.design:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f010120, 0x7f010121, 0x7f010122 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:bottomSheetDialogTheme */ public static int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:bottomSheetStyle */ public static int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} 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 android.support.design:textColorError */ public static 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 android.support.design:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.design:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength android.support.design:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color android.support.design:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.design:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.design:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.design:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness android.support.design: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 = { 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:arrowHeadLength */ public static int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:arrowShaftLength */ public static int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:barLength */ public static int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:color */ public static int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:drawableSize */ public static int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:gapBetweenBars */ public static int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:spinBars */ public static int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:thickness */ public static 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 android.support.design:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.design:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth android.support.design:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation android.support.design:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize android.support.design:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.design:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor android.support.design:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.design: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 = { 0x7f010025, 0x7f0100fd, 0x7f0100fe, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:backgroundTint */ public static int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link android.support.design.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> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.design:backgroundTintMode */ public static int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:borderWidth */ public static int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:elevation */ public static int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:fabSize */ public static int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:pressedTranslationZ */ public static int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:rippleColor */ public static int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:useCompatPadding */ public static int FloatingActionButton_useCompatPadding = 7; /** 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 android.support.design:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010128 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:behavior_autoHide */ public static int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a FontFamily. <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 #FontFamily_fontProviderAuthority android.support.design:fontProviderAuthority}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderCerts android.support.design:fontProviderCerts}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.design:fontProviderFetchStrategy}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.design:fontProviderFetchTimeout}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderPackage android.support.design:fontProviderPackage}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderQuery android.support.design:fontProviderQuery}</code></td><td></td></tr> </table> @see #FontFamily_fontProviderAuthority @see #FontFamily_fontProviderCerts @see #FontFamily_fontProviderFetchStrategy @see #FontFamily_fontProviderFetchTimeout @see #FontFamily_fontProviderPackage @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily = { 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156 }; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderAuthority} attribute's value can be found in the {@link #FontFamily} 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 android.support.design:fontProviderAuthority */ public static int FontFamily_fontProviderAuthority = 0; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderCerts} attribute's value can be found in the {@link #FontFamily} 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 android.support.design:fontProviderCerts */ public static int FontFamily_fontProviderCerts = 3; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderFetchStrategy} attribute's value can be found in the {@link #FontFamily} 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>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> @attr name android.support.design:fontProviderFetchStrategy */ public static int FontFamily_fontProviderFetchStrategy = 4; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderFetchTimeout} attribute's value can be found in the {@link #FontFamily} array. <p>May 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. <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>forever</code></td><td>-1</td><td></td></tr> </table> @attr name android.support.design:fontProviderFetchTimeout */ public static int FontFamily_fontProviderFetchTimeout = 5; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderPackage} attribute's value can be found in the {@link #FontFamily} 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 android.support.design:fontProviderPackage */ public static int FontFamily_fontProviderPackage = 1; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderQuery} attribute's value can be found in the {@link #FontFamily} 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 android.support.design:fontProviderQuery */ public static int FontFamily_fontProviderQuery = 2; /** Attributes that can be used with a FontFamilyFont. <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 #FontFamilyFont_android_font android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_font android.support.design:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontStyle android.support.design:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontWeight android.support.design:fontWeight}</code></td><td></td></tr> </table> @see #FontFamilyFont_android_font @see #FontFamilyFont_android_fontStyle @see #FontFamilyFont_android_fontWeight @see #FontFamilyFont_font @see #FontFamilyFont_fontStyle @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x7f010157, 0x7f010158, 0x7f010159 }; /** <p>This symbol is the offset where the {@link android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:font */ public static int FontFamilyFont_android_font = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontStyle */ public static int FontFamilyFont_android_fontStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontWeight */ public static int FontFamilyFont_android_fontWeight = 1; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} 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 android.support.design:font */ public static int FontFamilyFont_font = 4; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} 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>italic</code></td><td>1</td><td></td></tr> </table> @attr name android.support.design:fontStyle */ public static int FontFamilyFont_fontStyle = 3; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} 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 android.support.design:fontWeight */ public static int FontFamilyFont_fontWeight = 5; /** 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 android.support.design: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, 0x7f010129 }; /** <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 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 int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:foregroundInsidePadding */ public static int ForegroundLinearLayout_foregroundInsidePadding = 2; /** 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 android.support.design:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.design:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.design:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.design: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, 0x7f010014, 0x7f0100be, 0x7f0100bf, 0x7f0100c0 }; /** <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 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 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 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 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 int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:divider */ public static int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:dividerPadding */ public static int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:measureWithLargestChild */ public static int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:showDividers */ public static 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 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 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 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 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 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 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 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 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 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 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 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 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 android.support.design:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass android.support.design:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass android.support.design:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.design:alphabeticModifiers}</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_contentDescription android.support.design:contentDescription}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTint android.support.design:iconTint}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTintMode android.support.design:iconTintMode}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_numericModifiers android.support.design:numericModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction android.support.design:showAsAction}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_tooltipText android.support.design:tooltipText}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_alphabeticModifiers @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_contentDescription @see #MenuItem_iconTint @see #MenuItem_iconTintMode @see #MenuItem_numericModifiers @see #MenuItem_showAsAction @see #MenuItem_tooltipText */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionLayout */ public static int MenuItem_actionLayout = 16; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionProviderClass */ public static int MenuItem_actionProviderClass = 18; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:actionViewClass */ public static int MenuItem_actionViewClass = 17; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#alphabeticModifiers} 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>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name android.support.design:alphabeticModifiers */ public static int MenuItem_alphabeticModifiers = 13; /** <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 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 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 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 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 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 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 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 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 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 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 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 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 int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#contentDescription} 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 android.support.design:contentDescription */ public static int MenuItem_contentDescription = 19; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#iconTint} attribute's value can be found in the {@link #MenuItem} 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 android.support.design:iconTint */ public static int MenuItem_iconTint = 21; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#iconTintMode} attribute's value can be found in the {@link #MenuItem} 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 android.support.design:iconTintMode */ public static int MenuItem_iconTintMode = 22; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#numericModifiers} 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>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name android.support.design:numericModifiers */ public static int MenuItem_numericModifiers = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:showAsAction */ public static int MenuItem_showAsAction = 15; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#tooltipText} 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 android.support.design:tooltipText */ public static int MenuItem_tooltipText = 20; /** 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 android.support.design:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow android.support.design: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, 0x7f0100cb, 0x7f0100cc }; /** <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 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 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 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 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 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 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 int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:preserveIconSpacing */ public static int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subMenuArrow */ public static 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 android.support.design:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout android.support.design:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground android.support.design:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint android.support.design:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance android.support.design:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor android.support.design:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu android.support.design: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, 0x7f010025, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f }; /** <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 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 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 int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:elevation */ public static int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:headerLayout */ public static int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemBackground */ public static int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemIconTint */ public static int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemTextAppearance */ public static int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:itemTextColor */ public static int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:menu */ public static 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 android.support.design: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, 0x7f0100cd }; /** <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 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 int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:overlapAnchor */ public static 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 android.support.design:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100ce }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:state_above_anchor */ public static 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 android.support.design:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.design:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100cf, 0x7f0100d0 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:paddingBottomNoButtons */ public static int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:paddingTopNoTitle */ public static 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_fastScrollEnabled android.support.design:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.design:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.design:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.design:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.design:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager android.support.design:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout android.support.design:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount android.support.design:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd android.support.design:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_fastScrollEnabled @see #RecyclerView_fastScrollHorizontalThumbDrawable @see #RecyclerView_fastScrollHorizontalTrackDrawable @see #RecyclerView_fastScrollVerticalThumbDrawable @see #RecyclerView_fastScrollVerticalTrackDrawable @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }; /** <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 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 int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollEnabled} 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 android.support.design:fastScrollEnabled */ public static int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollHorizontalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} 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 android.support.design:fastScrollHorizontalThumbDrawable */ public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollHorizontalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} 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 android.support.design:fastScrollHorizontalTrackDrawable */ public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollVerticalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} 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 android.support.design:fastScrollVerticalThumbDrawable */ public static int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollVerticalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} 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 android.support.design:fastScrollVerticalTrackDrawable */ public static int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layoutManager */ public static int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:reverseLayout */ public static int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:spanCount */ public static int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:stackFromEnd */ public static 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 android.support.design:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010130 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:insetForeground */ public static 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 android.support.design:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f010131 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:behavior_overlapTop */ public static 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 android.support.design:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon android.support.design:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint android.support.design:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon android.support.design:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault android.support.design:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout android.support.design:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground android.support.design:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint android.support.design:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon android.support.design:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon android.support.design:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground android.support.design:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout android.support.design:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon android.support.design: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, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd }; /** <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 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 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 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 int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:closeIcon */ public static int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:commitIcon */ public static int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:defaultQueryHint */ public static int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:goIcon */ public static int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:iconifiedByDefault */ public static int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:layout */ public static int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:queryBackground */ public static int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:queryHint */ public static int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:searchHintIcon */ public static int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:searchIcon */ public static int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:submitBackground */ public static int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:suggestionRowLayout */ public static int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:voiceIcon */ public static 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 android.support.design:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.design:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010025, 0x7f010132 }; /** <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 int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:elevation */ public static int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:maxActionInlineWidth */ public static 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 android.support.design: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, 0x7f010026 }; /** <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 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 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 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 int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:popupTheme */ public static 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 android.support.design:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack android.support.design:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.design:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding android.support.design:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.design:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.design:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint android.support.design:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.design:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track android.support.design:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint android.support.design:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode android.support.design: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, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8 }; /** <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 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 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 int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:showText */ public static int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:splitTrack */ public static int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:switchMinWidth */ public static int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:switchPadding */ public static int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:switchTextAppearance */ public static int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:thumbTextPadding */ public static int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:thumbTint */ public static int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:thumbTintMode */ public static int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:track */ public static int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:trackTint */ public static int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:trackTintMode */ public static 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 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 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 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 android.support.design:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart android.support.design:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity android.support.design:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.design:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.design:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth android.support.design:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth android.support.design:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode android.support.design:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding android.support.design:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.design:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.design:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart android.support.design:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop android.support.design:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.design:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance android.support.design:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor android.support.design: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 = { 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabBackground */ public static int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabContentStart */ public static int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabGravity */ public static int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabIndicatorColor */ public static int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabIndicatorHeight */ public static int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabMaxWidth */ public static int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabMinWidth */ public static int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabMode */ public static int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabPadding */ public static int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabPaddingBottom */ public static int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabPaddingEnd */ public static int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabPaddingStart */ public static int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabPaddingTop */ public static int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabSelectedTextColor */ public static int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabTextAppearance */ public static int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:tabTextColor */ public static 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_fontFamily android:fontFamily}</code></td><td></td></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_textColorLink android:textColorLink}</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_fontFamily android.support.design:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps android.support.design:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_fontFamily @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_textColorLink @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_fontFamily @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f010036, 0x7f01003c }; /** <p>This symbol is the offset where the {@link android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:fontFamily */ public static int TextAppearance_android_fontFamily = 10; /** <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 int TextAppearance_android_shadowColor = 6; /** <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 int TextAppearance_android_shadowDx = 7; /** <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 int TextAppearance_android_shadowDy = 8; /** <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 int TextAppearance_android_shadowRadius = 9; /** <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 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 int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textColorLink} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorLink */ public static int TextAppearance_android_textColorLink = 5; /** <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 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 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 int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link android.support.design.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} 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 android.support.design:fontFamily */ public static int TextAppearance_fontFamily = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:textAllCaps */ public static int TextAppearance_textAllCaps = 11; /** 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 android.support.design:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.design:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.design:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.design:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled android.support.design:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.design:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.design:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled android.support.design:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.design:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.design:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.design:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.design:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.design:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.design: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, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150 }; /** <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 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 int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:counterEnabled */ public static int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:counterMaxLength */ public static int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:counterOverflowTextAppearance */ public static int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:counterTextAppearance */ public static int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:errorEnabled */ public static int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:errorTextAppearance */ public static int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:hintAnimationEnabled */ public static int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:hintEnabled */ public static int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:hintTextAppearance */ public static int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:passwordToggleContentDescription */ public static int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:passwordToggleDrawable */ public static int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:passwordToggleEnabled */ public static int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:passwordToggleTint */ public static int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:passwordToggleTintMode */ public static 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 android.support.design:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription android.support.design:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon android.support.design:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd android.support.design:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.design:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft android.support.design:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight android.support.design:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart android.support.design:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.design:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo android.support.design:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription android.support.design:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight android.support.design:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription android.support.design:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon android.support.design:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme android.support.design:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle android.support.design:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.design:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor android.support.design:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title android.support.design:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin android.support.design:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom android.support.design:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd android.support.design:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart android.support.design:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop android.support.design:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins android.support.design:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance android.support.design:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor android.support.design: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, 0x7f01000c, 0x7f01000f, 0x7f010013, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010026, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9 }; /** <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 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 int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:buttonGravity */ public static int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:collapseContentDescription */ public static int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:collapseIcon */ public static int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetEnd */ public static int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetEndWithActions */ public static int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetLeft */ public static int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetRight */ public static int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetStart */ public static int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:contentInsetStartWithNavigation */ public static int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:logo */ public static int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:logoDescription */ public static int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:maxButtonHeight */ public static int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:navigationContentDescription */ public static int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:navigationIcon */ public static int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:popupTheme */ public static int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subtitle */ public static int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subtitleTextAppearance */ public static int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:subtitleTextColor */ public static int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:title */ public static int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleMargin */ public static int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleMarginBottom */ public static int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleMarginEnd */ public static int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleMarginStart */ public static int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleMarginTop */ public static int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleMargins */ public static int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleTextAppearance */ public static int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:titleTextColor */ public static 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 android.support.design:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart android.support.design:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme android.support.design: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, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }; /** <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 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 int View_android_theme = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:paddingEnd */ public static int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:paddingStart */ public static int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:theme */ public static 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 android.support.design:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.design:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100fd, 0x7f0100fe }; /** <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 int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link android.support.design.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 android.support.design:backgroundTint */ public static int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link android.support.design.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> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name android.support.design:backgroundTintMode */ public static 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 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 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 int ViewStubCompat_android_layout = 1; }; }
cc652f1fd8bd528df903fff73c02dd3c22cb7eec
a45d7d4c9234cb7ac573811e49e0672d4064524a
/gmall-order/src/main/java/com/atguigu/com/gmall/order/pojo/OrderItemVo.java
f5ca0042097c9f3f536c3403f595f1957aa70a88
[ "Apache-2.0" ]
permissive
ymxaa/gmall-0821
df834f33d9ea4c9a4bca48ddb6e075cd8dfa0602
b4fe5f34b5c0fdeb5c992d6fdba1fd6689d5e4a4
refs/heads/main
2023-03-25T06:37:43.683869
2021-03-23T01:54:00
2021-03-23T01:54:00
330,569,597
0
0
null
null
null
null
UTF-8
Java
false
false
809
java
package com.atguigu.com.gmall.order.pojo; import com.atguigu.gmall.pms.entity.SkuAttrValueEntity; import com.atguigu.gmall.sms.vo.ItemSaleVo; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; import java.math.BigDecimal; import java.util.List; @Data public class OrderItemVo { private Long skuId; private String defaultImage; private String title; private List<SkuAttrValueEntity> saleAttrs; // 销售属性:List<SkuAttrValueEntity>的json格式 private BigDecimal price; // 加入购物车时的价格 private BigDecimal count; private Boolean store = false; // 是否有货 private List<ItemSaleVo> sales; // 营销信息: List<ItemSaleVo>的json格式 private Integer weight; //重量 }
427ec49d35c1e249e19a2665a72d8ad2dc090810
2379de98cc3bb94afedfc45e232d53573c8cebfb
/Week_01/IsUnique.java
05bedff33bcc58db402c4c6cd87e0e69b987484c
[]
no_license
Pierolin/-algorithm015
6005f8b3b6b8f04507d4b38b6c0481fdc975144e
41717b07cf99cc8602330e7442e9b91cec0be410
refs/heads/master
2023-01-12T21:43:47.978954
2020-11-20T13:12:44
2020-11-20T13:12:44
289,798,926
0
0
null
2020-08-24T01:30:38
2020-08-24T01:30:37
null
UTF-8
Java
false
false
1,371
java
package algorithm015.Week_01; public class IsUnique { public boolean isUnique(String astr) { // 方法一:计算唯一字符数 return astr.chars().distinct().count() == astr.length(); // 方法二:bool 数组 /* int[] chars = new int[26]; for(int i=0;i<astr.length();i++) { int c = astr.charAt(i)-'a'; if(chars[c]==1){ return false; } else{ chars[c]=1; } } return true; */ // 方法三: indexOf 和 lastIndexOf 时间复杂度 O(n) /* for(int i=0;i<astr.length();i++){ char c = astr.charAt(i); if(astr.indexOf(c) != astr.lastIndexOf(c)){ return false; } } return true; */ // 方法四: 双指针,时间复杂度 O(n^2) /* String temp = ""; for(char c:str.toCharArray()){ if(temp.indexOf(c)>-1) { return false; } else{ temp += c; } } */ } public static void main(String[] args) { IsUnique unique = new IsUnique(); String str = "aFbacdef"; boolean isUnique = unique.isUnique(str); System.out.println(isUnique); } }
d3e1131d056f2b59f2380e3b3198f00845e3affe
05ee5944509635baaac0326965304cd3011c5a4b
/CS106A/BookExercisesChapter09 (Object-Oriented Graphics)/DrawHouseOfUsher.java
6e2ced96f9df11a4e172fb86b797024e7195955b
[]
no_license
oliverpecha/Stanford-SEE
f170889ad02f6e9c9caeb19ccbfceda5cd64d6ad
562605a8e0e72fb84bc7c899346d5c2282e6f31c
refs/heads/master
2023-07-09T02:33:34.291651
2023-07-04T15:22:14
2023-07-04T15:22:14
229,628,585
2
0
null
null
null
null
UTF-8
Java
false
false
3,072
java
/* * File: DrawHouseOfUsher.java * Name: Oliver Pecha * Section Leader: Online Learning * ----------------- * Book / Chapter 9 / Programming Exercise Bonus 8 * ----------------- * If you wanted a house to go along with the Halloween pumpkin you designed in exercise 5, you might want to draw a diagram of the * House of Usher, which Edgar Allen Poe describes as follows: * I looked upon the scene before me . . . upon the bleak walls—upon the vacant eye-like windows . . . with an utter desperation * of soul . . . * From Poe’s description, you might imagine a house that looks something like this: * Write a GrpahicsProgram that draws a line drawing of the house shown on the following diagram: * Make sure that you use stepwise refinement to decompose this figure into useful pieces. * */ import acm.graphics.*; import acm.program.*; public class DrawHouseOfUsher extends GraphicsProgram { public void init() { setSize(xScreenSize, yScreenSize); } public void run() { int houseWidth = 200; int houseHeigth = 230; int windowsRadius = 30; house(houseWidth, houseHeigth, windowsRadius); } private void house(int houseWidth, int houseHeigth, int windowsRadius) { int defenseTowerWidth = houseWidth / 3; int defenseTowerHeight = houseHeigth * 4 / 3; int entryGateWidht = houseWidth / 5; int entryGateHeight = houseHeigth / 3; // Main Compartment towerGenerator(HOUSE_CENTER, houseWidth, houseHeigth, houseHeigth / 6 * 4); // DefenseTowers towerGenerator(HOUSE_CENTER - houseWidth / 2 - defenseTowerWidth / 2, defenseTowerWidth, defenseTowerHeight, defenseTowerHeight / 6 * 2); towerGenerator(HOUSE_CENTER + houseWidth / 2 + defenseTowerWidth / 2, defenseTowerWidth, defenseTowerHeight, defenseTowerHeight / 6 * 2); // Entry Gate towerGenerator(HOUSE_CENTER, entryGateWidht, entryGateHeight, entryGateHeight / 4 * 2); // Windows add(new GRect(HOUSE_CENTER + houseWidth / 4 - windowsRadius / 2, GROUND - houseHeigth / 4 * 3, windowsRadius, windowsRadius)); add(new GRect(HOUSE_CENTER - houseWidth / 4 - windowsRadius / 2, GROUND - houseHeigth / 4 * 3, windowsRadius, windowsRadius)); } private void towerGenerator(int x, int towerWidth, int towerHeight, int roofHeight) { add(new GRect(x - towerWidth / 2, GROUND - towerHeight, towerWidth, towerHeight)); add(new GLine(x - towerWidth / 2, GROUND - towerHeight, x, GROUND - towerHeight - roofHeight)); add(new GLine(x, GROUND - towerHeight - roofHeight, x + towerWidth / 2, GROUND - towerHeight)); } // Solves the centering screen issue due to getHeigh and getWidth only returning a fixed initial screen of 200px x 200px // Parameters that define size of the Theoretical Screen Size private static final int xScreenSize = 700; private static final int yScreenSize = 500; private static final int HOUSE_CENTER = xScreenSize / 2; private static final int GROUND = yScreenSize; // Representation of the Theoretical Screen Size private void screen() { add(new GRect ( 0, 0, xScreenSize, yScreenSize)); } }
40bd860b183042a97469c09cac236493a5121773
795434741bac632b5e98dd34bc27a4851695479d
/greedy/CourseScheduleIII.java
939a67999931c3478d7e99bc2ad697293df94365
[]
no_license
exmy/Algorithms
23e34e5051200789a43c914da67f160860b0a421
39123230cadac11d5a819ace6ad9581c6d876c02
refs/heads/master
2020-04-06T14:18:46.950079
2019-04-03T13:35:46
2019-04-03T13:35:46
157,536,191
1
1
null
2018-12-21T04:51:21
2018-11-14T11:05:49
Java
UTF-8
Java
false
false
941
java
class CourseScheduleIII{ // leetcode 630 // There are n different online courses numbered from 1 to n. // Each course has some duration(course length) t and closed on dth day. // A course should be taken continuously for t days and must be finished before or on the dth day. // You will start at the 1st day. // Given n online courses represented by pairs (t,d), // your task is to find the maximal number of courses that can be taken. // 思路:按照deadline排序,贪心策略,总是先解决最先结束的课程 public int scheduleCourse(int[][] courses) { Arrays.sort(courses, (a, b) -> a[1] - b[1]); PriorityQueue<Integer> pq = new PriorityQueue<>((a, b) -> b - a); int time = 0; for(int[] c: courses){ time += c[0]; pq.add(c[0]); if(time > c[1]) time -= pq.poll(); } return pq.size(); } }
9d858fd649d9f40011698c43300bdd4bf1eb73c8
4d061817ab1e1c79786d3bc51772ee9d03988f09
/cardservice/src/main/java/com/mdx/microservice/utils/DeckUtils.java
3f9b772c68004b6ca983fd18dd2d754bab034096
[]
no_license
rkum1989/spring
f362fe2d5a9abfd5694bf6bb521300aebcb91ec5
74a9e078036b59d01baf48b0aae6cffa11ee9255
refs/heads/master
2021-06-13T14:32:58.834956
2021-02-04T22:15:29
2021-02-04T22:15:29
335,922,052
1
0
null
null
null
null
UTF-8
Java
false
false
738
java
//////////////////////////////////////////////////////////////////////// // // @Id: DeckUtils.java // @Author: Shekhar Cambam // // Purpose: // Contains the DeckUtils class definition. // // All rights reserved. // //////////////////////////////////////////////////////////////////////// package com.mdx.microservice.utils; import com.google.gson.Gson; import com.google.gson.GsonBuilder; public class DeckUtils { // [ data-members.] private static final Gson gson = new GsonBuilder().setPrettyPrinting().create(); /** * This method converts the supplied object to json string. * @param object * @return */ public static String toJson(Object object) { String json = gson.toJson(object); return json; } }
d167f9502eceb6c8df881c7ccca629495358a850
b35654725adaf535863b7afd616e55ac38b60a86
/src/pipe/gui/widgets/LTLFormulaDialog.java
f630cd63452ecdca39df5c2ae3d95316a49bdfee
[]
no_license
lpcclown/asespring2017-timedPIPE
84ef0f3fdbac59eea1466e57111fb8749080d929
4aba54f16e44b999717116b0d037a1a9baad5e01
refs/heads/master
2021-01-19T07:50:45.215540
2017-04-13T16:52:08
2017-04-13T16:52:08
87,578,730
1
1
null
null
null
null
UTF-8
Java
false
false
8,381
java
package pipe.gui.widgets; import java.awt.HeadlessException; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.HashSet; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JOptionPane; import javax.swing.JScrollPane; import javax.swing.border.Border; import javax.swing.border.EtchedBorder; import ltlparser.errormsg.ErrorMsg; import ltlparser.ParseLTL; import formula.parser.SyntaxTreeCrawler; public class LTLFormulaDialog extends JDialog { public LTLFormulaPanel m_Panel; private String m_xmlString = ""; private FormulaDialogInterface m_dlgInterface; private ActionListener mCallback; private String mInitialFormula; HashSet<String> mDefinedVariables; private SyntaxTreeCrawler syntree; public LTLFormulaDialog(final String pInitialFormula, final HashSet<String> pDefinedVariables, final ActionListener pCallback){ super(); mCallback = pCallback; mInitialFormula = pInitialFormula; initialize(); } public LTLFormulaDialog(FormulaDialogInterface dlgInterface) throws HeadlessException { super(); m_dlgInterface = dlgInterface; initialize(); } public LTLFormulaDialog(String title, FormulaDialogInterface dlgInterface) throws HeadlessException { super(); m_dlgInterface = dlgInterface; initialize(); setTitle(title); } public LTLFormulaDialog(String title, String xml, FormulaDialogInterface dlgInterface) throws HeadlessException { super(); m_dlgInterface = dlgInterface; initialize(); // setXMLText(xml); setTitle(title); } // public void setXMLText(String xml){ // m_xmlString = xml; // XMLToString xmlToStr = new XMLToString(xml); //// String str = XMLToString.. .generateStrFromXML(xml); //// m_LTLPanel.setString(str); // if (xmlToStr.hasErrors()){ // // Show some error message // m_FOLPanel.setString(""); // }else // m_FOLPanel.setString(xmlToStr.getString()); // } protected void initialize() { setTitle("Formula Editor"); m_Panel = new LTLFormulaPanel(mInitialFormula); JScrollPane scrollPane = new JScrollPane(); scrollPane.getViewport().add(m_Panel); getContentPane().setLayout(null); getContentPane().add(scrollPane, java.awt.BorderLayout.NORTH); scrollPane.setSize(m_Panel.getSize().width + 5, m_Panel.getSize().height + 5); scrollPane.setLocation(5, 5); Border lineborder = BorderFactory.createEtchedBorder(EtchedBorder. RAISED); scrollPane.setBorder(lineborder); JButton closeBut = new JButton("Ok"); closeBut.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { //checkVarConsistencyPressed(); okPressed(); } }); closeBut.setSize(100, 30); closeBut.setLocation((scrollPane.getWidth() + scrollPane.getX()) / 3, scrollPane.getY() + scrollPane.getHeight() + 5); getContentPane().add(closeBut); this.rootPane.setDefaultButton(closeBut); this.setSize(scrollPane.getWidth() + scrollPane.getX() + 20, closeBut.getY() + closeBut.getHeight() + 45); //add XML button // JButton XMLBut = new JButton("EditXML"); // XMLBut.addActionListener(new java.awt.event.ActionListener() { // public void actionPerformed(java.awt.event.ActionEvent e) { // xmlPressed(); // } // }); // XMLBut.setSize(100,30); // XMLBut.setLocation(closeBut.getX() + closeBut.getWidth() + 5, scrollPane.getY() + scrollPane.getHeight() + 5); // getContentPane().add(XMLBut); //add Check variable consistency button // JButton CkVarBut = new JButton("CheckVar"); // CkVarBut.addActionListener(new java.awt.event.ActionListener(){ // public void actionPerformed(java.awt.event.ActionEvent e){ // checkVarConsistencyPressed(); // } // }); // CkVarBut.setSize(100, 30); // CkVarBut.setLocation(XMLBut.getX() + XMLBut.getWidth() + 5, scrollPane.getY() + scrollPane.getHeight() + 5); // getContentPane().add(CkVarBut); // setModal(true); } private void okPressed(){ try{ String strtoParse = new String(m_Panel.m_textField.getText()); if(strtoParse.equals("")){ JOptionPane.showMessageDialog(this,"Formula is empty!.","Null Error",JOptionPane.ERROR_MESSAGE); return; } /** * Check formula grammar; */ // java.io.Reader inp = (java.io.Reader) (new java.io.StringReader(strtoParse)); // status = s.bool_val; mCallback.actionPerformed(new ActionEvent(m_Panel, -1, strtoParse)); // myTransition.getTransSymbolTable().cleanTable(); // //store new formula to transition object }catch(Exception e){ System.err.println("Exception:Syntax Error Found!"); e.printStackTrace(); JOptionPane.showMessageDialog(this,"Syntax Errors found in formula.","Formula Syntax Error",JOptionPane.ERROR_MESSAGE); return; } //change the transition rectangle color setVisible(false); if (m_dlgInterface!=null) m_dlgInterface.parseExecuted(); //Test transition enabled HERE /***********************************/ // myTransition.TestCheckTransitionIsEnabled(); // CheckTransitionIsEnabled(myTransition); /*********************************/ } // private boolean getXML() { // String str = new String(m_FOLPanel.getString()); // /*java.io.Reader inp = (java.io.Reader) (new java.io.StringReader(str)); // ErrorMsg errorMsg = new ErrorMsg(str); // ParseFOL parse = new ParseFOL(str, errorMsg); // if (errorMsg.anyErrors) { // java.util.Vector vec = errorMsg.getMsgs(); // return false; // } // // Get the abstract syntax tree. // LogicSentence sentence = parse.absyn; // XMLGenerator gen = new XMLGenerator(); // gen.visit(sentence); // //System.out.println("<xml>"+gen.getXML()+"</xml>"); // //m_xmlString = "<xml>" + gen.getXML() + "</xml>"; // m_xmlString = gen.getXML(); // return true;*/ // StringToXML strToXml = new StringToXML(str); // if (strToXml.hasErrors()){ // return false; // } // m_xmlString = strToXml.getXML(); // return true; // } // private void xmlPressed(){ // // XMLDialog m_dlg = new XMLDialog(myTransition); // m_dlg.setVisible(true); // m_dlg.setSize(600, 600); // if(m_dlg.m_panel.m_textArea.getText() == null){ // return; // } // } // private void checkVarConsistencyPressed(){ // String strtoCheck = new String(m_Panel.m_textField.getText()); // //store new formula to transition object // String currentFormula = myTransition.getFormula(); // if(strtoCheck == null)return; // String newFormula = strtoCheck; // if(currentFormula != newFormula){ // CreateGui.getView().getUndoManager().addNewEdit(myTransition.setFormula(newFormula)); // //store new formula as XML // myTransition.setXMLFormula(); // //update transition variable list // myTransition.setTranVarList(); // } // // CheckVar ckvar = new CheckVar(myTransition); // boolean b = ckvar.check(); // if(b){ // JOptionPane.showMessageDialog(this,"Variable Consistency Satisfied!", "Variable Pass", JOptionPane.OK_CANCEL_OPTION); // }else{ // JOptionPane.showMessageDialog(this,"Variable inconsistency found!","Variable Error",JOptionPane.ERROR_MESSAGE); // } // } public String getXMLString(){ return m_xmlString; } }
5cc48be443ab657bca71691416de33c2087872db
b6f81977fb2872903fbd2baad4c1f5498be957f1
/samples/server/petstore/java-play-framework-no-exception-handling/app/apimodels/User.java
d941beb680c24425c1be6af791cbee680bdc21c7
[ "Apache-2.0" ]
permissive
aHisayoshiSuehiro/swagger-codegen
a557b9e86c0f23cdd9210326e95d2722d98e1cb5
2be2ee080be58e19591d0e8aa6bd8e1d80938fcc
refs/heads/master
2021-01-11T07:23:03.521272
2017-07-20T07:45:09
2017-07-20T07:45:09
71,998,259
0
1
null
2016-10-26T11:53:58
2016-10-26T11:53:57
null
UTF-8
Java
false
false
4,738
java
package apimodels; import java.util.Objects; import com.fasterxml.jackson.annotation.*; import javax.validation.constraints.*; /** * A User who is purchasing from the pet store */ public class User { @JsonProperty("id") private Long id = null; @JsonProperty("username") private String username = null; @JsonProperty("firstName") private String firstName = null; @JsonProperty("lastName") private String lastName = null; @JsonProperty("email") private String email = null; @JsonProperty("password") private String password = null; @JsonProperty("phone") private String phone = null; @JsonProperty("userStatus") private Integer userStatus = null; public User id(Long id) { this.id = id; return this; } /** * Get id * @return id **/ public Long getId() { return id; } public void setId(Long id) { this.id = id; } public User username(String username) { this.username = username; return this; } /** * Get username * @return username **/ public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public User firstName(String firstName) { this.firstName = firstName; return this; } /** * Get firstName * @return firstName **/ public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public User lastName(String lastName) { this.lastName = lastName; return this; } /** * Get lastName * @return lastName **/ public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public User email(String email) { this.email = email; return this; } /** * Get email * @return email **/ public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public User password(String password) { this.password = password; return this; } /** * Get password * @return password **/ public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public User phone(String phone) { this.phone = phone; return this; } /** * Get phone * @return phone **/ public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public User userStatus(Integer userStatus) { this.userStatus = userStatus; return this; } /** * User Status * @return userStatus **/ public Integer getUserStatus() { return userStatus; } public void setUserStatus(Integer userStatus) { this.userStatus = userStatus; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } User user = (User) o; return Objects.equals(this.id, user.id) && Objects.equals(this.username, user.username) && Objects.equals(this.firstName, user.firstName) && Objects.equals(this.lastName, user.lastName) && Objects.equals(this.email, user.email) && Objects.equals(this.password, user.password) && Objects.equals(this.phone, user.phone) && Objects.equals(this.userStatus, user.userStatus); } @Override public int hashCode() { return Objects.hash(id, username, firstName, lastName, email, password, phone, userStatus); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class User {\n"); sb.append(" id: ").append(toIndentedString(id)).append("\n"); sb.append(" username: ").append(toIndentedString(username)).append("\n"); sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n"); sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n"); sb.append(" email: ").append(toIndentedString(email)).append("\n"); sb.append(" password: ").append(toIndentedString(password)).append("\n"); sb.append(" phone: ").append(toIndentedString(phone)).append("\n"); sb.append(" userStatus: ").append(toIndentedString(userStatus)).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 "); } }
9a4075d0abdd93a8add12b048dcd48a8b37b411d
90047daeb462598a924d76ddf4288e832e86417c
/chrome/android/java/src/org/chromium/chrome/browser/FullscreenWebContentsActivity.java
5cbe34bf40bb2e7d7ad2241fec384726e5d03f13
[ "BSD-3-Clause" ]
permissive
massbrowser/android
99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080
a9c4371682c9443d6e1d66005d4db61a24a9617c
refs/heads/master
2022-11-04T21:15:50.656802
2017-06-08T12:31:39
2017-06-08T12:31:39
93,747,579
2
2
BSD-3-Clause
2022-10-31T10:34:25
2017-06-08T12:36:07
null
UTF-8
Java
false
false
4,146
java
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.chrome.browser; import android.app.Activity; import android.content.ComponentName; import android.content.Intent; import android.provider.Browser; import org.chromium.base.Log; import org.chromium.chrome.R; import org.chromium.chrome.browser.fullscreen.ChromeFullscreenManager; import org.chromium.chrome.browser.tab.Tab; import org.chromium.chrome.browser.tabmodel.AsyncTabParamsManager; import org.chromium.chrome.browser.tabmodel.TabReparentingParams; import org.chromium.chrome.browser.util.IntentUtils; import org.chromium.chrome.browser.webapps.FullScreenActivity; /** * An Activity used to display fullscreen WebContents. */ public class FullscreenWebContentsActivity extends FullScreenActivity { private static final String TAG = "FullWebConActivity"; @Override protected Tab createTab() { assert getIntent().hasExtra(IntentHandler.EXTRA_TAB_ID); int tabId = IntentUtils.safeGetIntExtra( getIntent(), IntentHandler.EXTRA_TAB_ID, Tab.INVALID_TAB_ID); TabReparentingParams params = (TabReparentingParams) AsyncTabParamsManager.remove(tabId); Tab tab = params.getTabToReparent(); tab.attachAndFinishReparenting(this, createTabDelegateFactory(), params); return tab; } @Override protected int getControlContainerLayoutId() { // TODO(peconn): Determine if there's something more suitable to use here. return R.layout.webapp_control_container; } @Override protected ChromeFullscreenManager createFullscreenManager() { // Create a Fullscreen manager that won't change the Tab's fullscreen state when the // Activity ends - we handle leaving fullscreen ourselves. return new ChromeFullscreenManager(this, false, false); } @Override public boolean supportsFullscreenActivity() { return true; } public static void toggleFullscreenMode(final boolean enableFullscreen, final Tab tab) { if (tab.getFullscreenManager() == null) { Log.w(TAG, "Cannot toggle fullscreen, manager is null."); return; } if (tab.getFullscreenManager().getTab() == tab) { tab.getFullscreenManager().setTab(null); } Runnable setFullscreen = new Runnable() { @Override public void run() { // The Tab's FullscreenManager changes when it is moved. tab.getFullscreenManager().setTab(tab); tab.toggleFullscreenMode(enableFullscreen); } }; Intent intent = new Intent(); Activity activity = tab.getActivity(); if (enableFullscreen) { // Send to the FullscreenWebContentsActivity. intent.setClass(tab.getActivity(), FullscreenWebContentsActivity.class); intent.putExtra(IntentHandler.EXTRA_PARENT_COMPONENT, activity.getComponentName()); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // In multiwindow mode we want both activities to be able to launch independent // FullscreenWebContentsActivity's. intent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK); } else { // Send back to the Activity it came from. ComponentName parent = IntentUtils.safeGetParcelableExtra( activity.getIntent(), IntentHandler.EXTRA_PARENT_COMPONENT); if (parent != null) { intent.setComponent(parent); } else { Log.d(TAG, "Cannot return fullscreen tab to parent Activity."); // Tab.detachAndStartReparenting will give the intent a default component if it // has none. } // TODO(peconn): Deal with tricky multiwindow scenarios. } intent.putExtra(Browser.EXTRA_APPLICATION_ID, activity.getPackageName()); tab.detachAndStartReparenting(intent, null, setFullscreen); } }
7072ba0b7ef2b2f759b5c9cc713592e422eedb9e
298a0a845807a9d19fb971847eb6249691326741
/src/controller/RepaintController.java
86830af898c2957baf041ca7815d2c4b0992e885
[]
no_license
jinpangleung/CISC275
b202b42476faf5618317e61bff5b716e19afe296
d2c55e9b0c7fb7b684b6f17148206a2cef01dd4f
refs/heads/master
2021-01-13T07:38:16.024358
2016-11-01T15:10:34
2016-11-01T15:10:34
71,476,017
0
0
null
2016-10-25T13:46:48
2016-10-20T15:17:43
Java
UTF-8
Java
false
false
396
java
package controller; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import model.Grid; import view.View; public class RepaintController implements ActionListener { private View view; public RepaintController(View view){ this.view = view; } public void actionPerformed(ActionEvent e){ Grid.getInstance().update(); view.repaint(); } }
2d64b73ef42c8a9aa84ffba71fbe53bdaa1af1d5
711ad62637993867b5d591a4aa8bc009c011640c
/Java Library Review/com/Jacksonnn/StringHandling/StringComparison.java
efe5eed84b8750c1cb70392e1b65393271106e93
[]
no_license
jphuse/JavaExamples
8a4c95d2b66c39a94cc6f5c84d2310479ed09330
a8b30301cf162ed86959d4f2e9c90630cd93d8c6
refs/heads/master
2023-02-02T21:32:17.086089
2018-05-29T12:41:22
2018-05-29T12:41:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
533
java
package com.Jacksonnn.StringHandling; public class StringComparison { public static void main(String[] args) { String s1 = "Hello"; String s2 = "Hello"; String s3 = "Good-bye"; String s4 = "HELLO"; System.out.println(s1 + " equals " + s2 + " -> " + s1.equals(s2)); System.out.println(s1 + " equals " + s3 + " -> " + s1.equals(s3)); System.out.println(s1 + " equals " + s4 + " -> " + s1.equals(s4)); System.out.println(s1 + " equalsIgnoreCase " + s4 + " -> " + s1.equalsIgnoreCase(s4)); } }
8b0276e6a2af4f38d3ed1f474002d4e6ca021464
1f84041049ae31c84cbeab01bae0f80c10617519
/src/beispiele/MehrzeiligerKommentar.java
14f85be44b750487e8779f3c43a1829402c9687d
[]
no_license
TZimber/WasHatEinBierGlasMitJavaZuTun
65463aba6bcf4fab77e13c9fae103f459552ec9e
84a58e459606adc0631199175001d561c749879f
refs/heads/master
2020-04-19T06:57:24.744226
2019-01-28T20:37:21
2019-01-28T20:37:21
168,033,100
0
0
null
null
null
null
UTF-8
Java
false
false
409
java
package beispiele; import java.util.Scanner; public class MehrzeiligerKommentar { public static void main(String[] args) { Scanner input = new Scanner(System.in); String text = input.nextLine(); /* dies ist eine mehrzeiliger Kommentar, er kann beliebig viele Zeilen lang sein */ System.out.println("Der eingegebene Text lautet: " + text); } }
8e85fbe925920bd2fe7c4cb79655abb169bc9468
ba50125dc607f457f5d3cc71cc1198f493688db6
/quickstart-android/database/app/src/main/java/com/google/firebase/quickstart/database/java/MainActivity.java
544c6c128a7b64ca8f634decbd4b7b8601c27674
[ "Apache-2.0", "CC-BY-4.0", "LicenseRef-scancode-other-permissive" ]
permissive
KH-SNS-Project/SNS
dd6cecf3253dd81a58a8fea259c1025af05ae8df
90e54e5d3d7652d6a7286d722c09d5b7f2d59c76
refs/heads/master
2023-01-14T06:35:04.284839
2019-12-11T09:58:48
2019-12-11T09:58:48
225,357,075
0
1
null
2023-01-09T12:05:45
2019-12-02T11:19:52
Java
UTF-8
Java
false
false
3,955
java
/* * Copyright 2015 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.firebase.quickstart.database.java; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Button; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentPagerAdapter; import androidx.viewpager.widget.ViewPager; import com.google.android.material.tabs.TabLayout; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.quickstart.database.R; import com.google.firebase.quickstart.database.java.fragment.MyPostsFragment; import com.google.firebase.quickstart.database.java.fragment.MyTopPostsFragment; import com.google.firebase.quickstart.database.java.fragment.RecentPostsFragment; public class MainActivity extends BaseActivity { private static final String TAG = "MainActivity"; private FragmentPagerAdapter mPagerAdapter; private ViewPager mViewPager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Create the adapter that will return a fragment for each section mPagerAdapter = new FragmentPagerAdapter(getSupportFragmentManager(), FragmentPagerAdapter.BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) { private final Fragment[] mFragments = new Fragment[] { new RecentPostsFragment(), new MyPostsFragment(), new MyTopPostsFragment(), }; private final String[] mFragmentNames = new String[] { getString(R.string.heading_recent), getString(R.string.heading_my_posts), getString(R.string.heading_my_top_posts) }; @Override public Fragment getItem(int position) { return mFragments[position]; } @Override public int getCount() { return mFragments.length; } @Override public CharSequence getPageTitle(int position) { return mFragmentNames[position]; } }; // Set up the ViewPager with the sections adapter. mViewPager = findViewById(R.id.container); mViewPager.setAdapter(mPagerAdapter); TabLayout tabLayout = findViewById(R.id.tabs); tabLayout.setupWithViewPager(mViewPager); // Button launches NewPostActivity findViewById(R.id.fabNewPost).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { startActivity(new Intent(MainActivity.this, NewPostActivity.class)); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.menu_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { int i = item.getItemId(); if (i == R.id.action_logout) { FirebaseAuth.getInstance().signOut(); startActivity(new Intent(this, SignInActivity.class)); finish(); return true; } else { return super.onOptionsItemSelected(item); } } }
8b7f8bcd83362767f613fa54fec610302fed6476
db876647c4954d7c19adaa13efeed0dbc33437e2
/src/businesslogic/players/PlayerAutoTest.java
856159dfc18a5231b7229e47084e6504c8d4e1d7
[]
no_license
bobo15850/NBA_WITHOUT_UI
201b179c4e398fe11ea97da733a096592ec6af2f
df164c5abb577927ed4afb936f12884027b428a0
refs/heads/master
2020-04-11T03:41:45.830242
2015-05-11T15:46:03
2015-05-11T15:46:03
33,709,834
0
2
null
2015-05-10T08:29:01
2015-04-10T05:17:35
Java
UTF-8
Java
false
false
16,374
java
package businesslogic.players; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.Map.Entry; import java.util.TreeMap; import org.apache.commons.beanutils.BeanComparator; import org.apache.commons.collections.comparators.ComparatorChain; import test.data.PlayerHighInfo; import test.data.PlayerHotInfo; import test.data.PlayerKingInfo; import test.data.PlayerNormalInfo; import autoTestService.PlayerAutoTestService; import businesslogic.CACHE; import businesslogic.MySort; import common.mydatastructure.Filter; import common.mydatastructure.GeneralInfoOfPlayer; import common.mydatastructure.MyDate; import common.mydatastructure.PlayerNormalInfo_Expand; import common.mydatastructure.PlayerPerformOfOneMatch; import common.mydatastructure.SortCell; import common.statics.Age; import common.statics.Field; import common.statics.League; import common.statics.Position; import data.players.PlayerInfoData; import dataservice.players.PlayerInfoDataService; public class PlayerAutoTest implements PlayerAutoTestService { private PlayerInfoDataService playerData = PlayerInfoData.getInstance(); public ArrayList<PlayerHotInfo> getPlayerHot(int number, String field) { String fieldChange = field; if (fieldChange.equals(Field.score)) { fieldChange = Field.point; } ArrayList<PlayerHotInfo> playerHotList = new ArrayList<PlayerHotInfo>(512); for (Entry<String, TreeMap<MyDate, PlayerPerformOfOneMatch>> temp : playerData.getAllPlayerAllPerform().entrySet()) { String playerName = temp.getKey(); TreeMap<MyDate, PlayerPerformOfOneMatch> onePlayer = temp.getValue(); ArrayList<PlayerPerformOfOneMatch> onePlayerPerform = new ArrayList<PlayerPerformOfOneMatch>(128); for (Entry<MyDate, PlayerPerformOfOneMatch> oneMatch : onePlayer.entrySet()) { onePlayerPerform.add(oneMatch.getValue()); } int numOfGame = onePlayerPerform.size(); if (numOfGame > 5) { double before = 0; double latestFive = 0; double all = 0; ArrayList<Double> dataList = new ArrayList<Double>(128); if (fieldChange.equals(Field.point)) { dataList = this.getPerform(onePlayerPerform, new Point()); } else if (fieldChange.equals(Field.rebound)) { dataList = this.getPerform(onePlayerPerform, new Rebond()); } else if (fieldChange.equals(Field.assist)) { dataList = this.getPerform(onePlayerPerform, new Assist()); } else if (fieldChange.equals(Field.steal)) { dataList = this.getPerform(onePlayerPerform, new Steal()); } else if (fieldChange.equals(Field.blockShot)) { dataList = this.getPerform(onePlayerPerform, new BlockShot()); } for (int j = 0; j < dataList.size() - 5; j++) { before += dataList.get(j); } for (int j = dataList.size() - 5; j < dataList.size(); j++) { latestFive += dataList.get(j); } if (before != 0) { all = before + latestFive; // 以上都为总和,以下为平均 all /= numOfGame; before /= (numOfGame - 5); latestFive /= 5; double upGradeRate = (CalculationOfPlayerPerform.cutTail(latestFive - before) / before); PlayerHotInfo tempHotInfo = new PlayerHotInfo(); tempHotInfo.setField(field); tempHotInfo.setName(playerName); tempHotInfo.setPosition(playerData.getGeneralInfoOfOnePlayer(playerName).getPosition()); tempHotInfo.setTeamName(onePlayerPerform.get(numOfGame - 1).getTeamName()); tempHotInfo.setValue(CalculationOfPlayerPerform.cutTail(all)); tempHotInfo.setUpgradeRate(CalculationOfPlayerPerform.cutTail(upGradeRate)); playerHotList.add(tempHotInfo); } } } Collections.sort(playerHotList, new Comparator<PlayerHotInfo>() { public int compare(PlayerHotInfo o1, PlayerHotInfo o2) { if (o1.getUpgradeRate() < o2.getUpgradeRate()) { return 1; } else if (o1.getUpgradeRate() == o2.getUpgradeRate()) { return 0; } else { return -1; } } }); if (number < 0) { number = 5; } if (number > playerHotList.size()) { number = playerHotList.size(); } ArrayList<PlayerHotInfo> resultList = new ArrayList<PlayerHotInfo>(number); for (int i = 0; i < number; i++) { resultList.add(playerHotList.get(i)); } return resultList; }// 得到热门球员 @SuppressWarnings("unchecked") public ArrayList<PlayerKingInfo> getPlayerKingOfSeason(int number, String field) { String fieldChange = field; if (fieldChange.equals(Field.score)) { fieldChange = Field.point; } ArrayList<PlayerNormalInfo_Expand> playerNormal_avg = new ArrayList<PlayerNormalInfo_Expand>(512); for (Entry<String, PlayerNormalInfo_Expand> temp : CACHE.PLAYER_NORMAL.entrySet()) { playerNormal_avg.add(temp.getValue().getPlayerNormal_avg()); } ArrayList<BeanComparator> sortFields = new ArrayList<BeanComparator>();// 声明要排序的对象的属性,并指明所使用的排序规则,如果不指明,则用默认排序 sortFields.add(new BeanComparator(fieldChange)); ComparatorChain comChain = new ComparatorChain(sortFields);// 创建一个排序链 Collections.sort(playerNormal_avg, comChain);// 开始真正的排序,按照先主,后副的规则 if (number < 0) { number = 5; } if (number > playerNormal_avg.size()) { number = playerNormal_avg.size(); } ArrayList<PlayerKingInfo> resultList = new ArrayList<PlayerKingInfo>(number); for (int i = playerNormal_avg.size() - 1; i > playerNormal_avg.size() - number - 1; i--) { PlayerNormalInfo_Expand tempNormal_avg = playerNormal_avg.get(i); double value = 0; if (fieldChange.equals(Field.point)) { value = tempNormal_avg.getPoint(); } else if (fieldChange.equals(Field.rebound)) { value = tempNormal_avg.getRebound(); } else if (fieldChange.equals(Field.assist)) { value = tempNormal_avg.getAssist(); } else if (fieldChange.equals(Field.steal)) { value = tempNormal_avg.getSteal(); } else if (fieldChange.equals(Field.blockShot)) { value = tempNormal_avg.getBlockShot(); } else if (fieldChange.equals(Field.shot)) { value = tempNormal_avg.getShot(); } else if (fieldChange.equals(Field.three)) { value = tempNormal_avg.getThree(); } else if (fieldChange.equals(Field.penalty)) { value = tempNormal_avg.getPenalty(); } PlayerKingInfo tempKing = new PlayerKingInfo(); tempKing.setName(tempNormal_avg.getName()); tempKing.setTeamName(tempNormal_avg.getTeamName()); tempKing.setField(field); tempKing.setValue(value); tempKing.setPosition(this.playerData.getGeneralInfoOfOnePlayer(tempNormal_avg.getName()).getPosition()); resultList.add(tempKing); } return resultList; }// 得到赛季数据王 @SuppressWarnings("unchecked") public ArrayList<PlayerKingInfo> getPlayerKingOfDaily(int number, String field) { String fieldChange = field; if (fieldChange.equals(Field.score)) { fieldChange = Field.point; } ArrayList<PlayerPerformOfOneMatch> playerPerformOneDay = new ArrayList<PlayerPerformOfOneMatch>(); for (Entry<String, PlayerPerformOfOneMatch> playerPerformOfOneMatch : CACHE.PLAYER_TODAY.entrySet()) { playerPerformOneDay.add(playerPerformOfOneMatch.getValue()); } ArrayList<BeanComparator> sortFields = new ArrayList<BeanComparator>();// 声明要排序的对象的属性,并指明所使用的排序规则,如果不指明,则用默认排序 sortFields.add(new BeanComparator(fieldChange)); ComparatorChain comChain = new ComparatorChain(sortFields);// 创建一个排序链 Collections.sort(playerPerformOneDay, comChain);// 开始真正的排序,按照先主,后副的规则 if (number < 0) { number = 5; } if (number > playerPerformOneDay.size()) { number = playerPerformOneDay.size(); } ArrayList<PlayerKingInfo> resultList = new ArrayList<PlayerKingInfo>(number); for (int i = playerPerformOneDay.size() - 1; i > playerPerformOneDay.size() - number - 1; i--) { PlayerPerformOfOneMatch tempPerformOfOneMatch = playerPerformOneDay.get(i); double value = 0; if (fieldChange.equals(Field.point)) { value = tempPerformOfOneMatch.getPoint(); } else if (fieldChange.equals(Field.rebound)) { value = tempPerformOfOneMatch.getRebound(); } else if (fieldChange.equals(Field.assist)) { value = tempPerformOfOneMatch.getAssist(); } else if (fieldChange.equals(Field.steal)) { value = tempPerformOfOneMatch.getSteal(); } else if (fieldChange.equals(Field.blockShot)) { value = tempPerformOfOneMatch.getBlockShot(); } PlayerKingInfo tempKing = new PlayerKingInfo(); tempKing.setField(field); tempKing.setName(tempPerformOfOneMatch.getName()); tempKing.setTeamName(tempPerformOfOneMatch.getTeamName()); tempKing.setPosition(this.playerData.getGeneralInfoOfOnePlayer(tempPerformOfOneMatch.getName()).getPosition()); tempKing.setValue(value); resultList.add(tempKing); } return resultList; }// 得到今日数据王 @SuppressWarnings("unchecked") public ArrayList<PlayerHighInfo> getPlayerHigh(int number, SortCell[] sortCells) { ArrayList<PlayerHighInfo> playerHighList = new ArrayList<PlayerHighInfo>(512);// 合格的球员链表 for (Entry<String, PlayerHighInfo> temp : CACHE.PLAYER_HIGH.entrySet()) { playerHighList.add(temp.getValue()); }// 筛选出合格的球员 ArrayList<BeanComparator> sortFields = new ArrayList<BeanComparator>();// 声明要排序的对象的属性,并指明所使用的排序规则,如果不指明,则用默认排序 for (int i = 0; i < sortCells.length; i++) { sortFields.add(MySort.getBeanComparator(sortCells[i])); } ComparatorChain comChain = new ComparatorChain(sortFields);// 创建一个排序链 Collections.sort(playerHighList, comChain);// 开始真正的排序,按照先主,后副的规则 if (number < 0) { number = 50; } if (number > playerHighList.size()) { number = playerHighList.size(); } ArrayList<PlayerHighInfo> resultList = new ArrayList<PlayerHighInfo>(number); for (int i = 0; i < number; i++) { resultList.add(playerHighList.get(i)); } return resultList; }// 得到球员高阶数据 @SuppressWarnings("unchecked") public ArrayList<PlayerNormalInfo> getPlayerNormal_avg(int number, Filter filter, SortCell[] sortCells) { ArrayList<PlayerNormalInfo_Expand> playerNormalList = new ArrayList<PlayerNormalInfo_Expand>(512); for (Entry<String, PlayerNormalInfo_Expand> temp : CACHE.PLAYER_NORMAL.entrySet()) { PlayerNormalInfo_Expand playerNormal_avg = temp.getValue().getPlayerNormal_avg(); GeneralInfoOfPlayer generalInfo = playerData.getGeneralInfoOfOnePlayer(playerNormal_avg.getName()); String league = playerData.getLeague(playerNormal_avg.getName()); if (this.isAgeSuit(filter.getAge(), generalInfo.getAge()) && this.isLeagueSuit(filter.getLeague(), league) && this.isPositionSuit(filter.getPosition(), generalInfo.getPosition())) { playerNormalList.add(playerNormal_avg); } }// 三个筛选条件 ArrayList<BeanComparator> sortFields = new ArrayList<BeanComparator>();// 声明要排序的对象的属性,并指明所使用的排序规则,如果不指明,则用默认排序 for (int i = 0; i < sortCells.length; i++) { sortFields.add(MySort.getBeanComparator(sortCells[i])); } ComparatorChain comChain = new ComparatorChain(sortFields);// 创建一个排序链 Collections.sort(playerNormalList, comChain);// 开始真正的排序,按照先主,后副的规则 if (number < 0) { number = 50; } if (number > playerNormalList.size()) { number = playerNormalList.size(); }// 保证number有意义 ArrayList<PlayerNormalInfo> resultList = new ArrayList<PlayerNormalInfo>(number); for (int i = 0; i < number; i++) { resultList.add((PlayerNormalInfo) playerNormalList.get(i)); } return resultList; }// 得到球员平均普通数据 @SuppressWarnings("unchecked") public ArrayList<PlayerNormalInfo> getPlayerNormal_tot(int number, Filter filter, SortCell[] sortCells) { ArrayList<PlayerNormalInfo_Expand> playerNormalList = new ArrayList<PlayerNormalInfo_Expand>(512); for (Entry<String, PlayerNormalInfo_Expand> temp : CACHE.PLAYER_NORMAL.entrySet()) { PlayerNormalInfo_Expand playerNormal = temp.getValue(); GeneralInfoOfPlayer generalInfo = playerData.getGeneralInfoOfOnePlayer(playerNormal.getName()); String league = playerData.getLeague(playerNormal.getName()); if (this.isAgeSuit(filter.getAge(), generalInfo.getAge()) && this.isLeagueSuit(filter.getLeague(), league) && this.isPositionSuit(filter.getPosition(), generalInfo.getPosition())) { playerNormalList.add(playerNormal); } }// 三个筛选条件 ArrayList<BeanComparator> sortFields = new ArrayList<BeanComparator>();// 声明要排序的对象的属性,并指明所使用的排序规则,如果不指明,则用默认排序 for (int i = 0; i < sortCells.length; i++) { sortFields.add(MySort.getBeanComparator(sortCells[i])); } ComparatorChain comChain = new ComparatorChain(sortFields);// 创建一个排序链 Collections.sort(playerNormalList, comChain);// 开始真正的排序,按照先主,后副的规则 if (number < 0) { number = 50; } if (number > playerNormalList.size()) { number = playerNormalList.size(); }// 保证number正确 ArrayList<PlayerNormalInfo> resultList = new ArrayList<PlayerNormalInfo>(number); for (int i = 0; i < number; i++) { resultList.add((PlayerNormalInfo) playerNormalList.get(i)); } return resultList; }// 得到球员总和普通数据 private boolean isAgeSuit(String AgeFilter, int age) { if (AgeFilter.equals(Age.All)) { return true; } else if (AgeFilter.equals(Age.M_22_L_E_25)) { if (age > 22 && age <= 25) { return true; } else { return false; } } else if (AgeFilter.equals(Age.M_25_L_E_30)) { if (age > 25 && age <= 30) { return true; } else { return false; } } else if (AgeFilter.equals(Age.L_E_22)) { if (age <= 22) { return true; } else { return false; } } else if (AgeFilter.equals(Age.M_30)) { if (age >= 30) { return true; } else { return false; } } return false; } private boolean isLeagueSuit(String leagueFilter, String league) { if (leagueFilter.equals(League.All)) { return true; } else if (leagueFilter.equals(league)) { return true; } else { return false; } } private boolean isPositionSuit(String positionFilter, String position) { if (positionFilter.equals(Position.All)) { return true; } else if (positionFilter.equals(position)) { return true; } else if (position.contains(positionFilter)) { return true; } else { return false; } } private ArrayList<Double> getPerform(ArrayList<PlayerPerformOfOneMatch> playerPerformList, PlayerPerform perform) { ArrayList<Double> dataList = new ArrayList<Double>(128); for (int i = 0; i < playerPerformList.size(); i++) { dataList.add(perform.getPerformance(playerPerformList.get(i))); } return dataList; } interface PlayerPerform { public double getPerformance(PlayerPerformOfOneMatch player); } class Rebond implements PlayerPerform { public double getPerformance(PlayerPerformOfOneMatch player) { return player.getRebound(); } }// 总篮板 class Assist implements PlayerPerform { public double getPerformance(PlayerPerformOfOneMatch player) { return player.getAssist(); } }// 总助攻数 class Steal implements PlayerPerform { public double getPerformance(PlayerPerformOfOneMatch player) { return player.getSteal(); } }// 总抢断数 class BlockShot implements PlayerPerform { public double getPerformance(PlayerPerformOfOneMatch player) { return player.getBlockShot(); } }// 总盖帽数 class Point implements PlayerPerform { public double getPerformance(PlayerPerformOfOneMatch player) { return player.getPoint(); } }// 得分 }
0498df4608e06dd0096c02b8e743443bf3e4aff9
fa063cacae9f88e3c1fefcf4c045bbfd19775b20
/src/main/java/com/think/IO/Dirlistwo.java
92eb534dd621a2861b2d1e708fa023a451fa443e
[]
no_license
Robot0111/Think-in-java
1fc7dafd97cee9c7cef9e59cc880698acd067d0d
3dae936eb77911d839a8cd833e5b57c610f9eff9
refs/heads/master
2022-05-06T09:08:31.675946
2022-04-27T08:54:46
2022-04-27T08:54:46
168,095,154
0
0
null
2022-03-24T00:33:33
2019-01-29T05:30:10
Java
UTF-8
Java
false
false
832
java
package com.think.IO; import java.io.File; import java.io.FilenameFilter; import java.util.Arrays; import java.util.regex.Pattern; public class Dirlistwo { public static FilenameFilter filter(final String regex) { return new FilenameFilter() { private Pattern pattern = Pattern.compile(regex); @Override public boolean accept(File dir, String name) { return pattern.matcher(name).matches(); } }; } public static void main(String[] args) { File path = new File("D:\\workspace\\ThinkJ\\src\\main\\java\\com\\think\\generic"); String[] list; if (args.length == 0) list = path.list(); else list = path.list(filter(args[0])); Arrays.sort(list,String.CASE_INSENSITIVE_ORDER); for (String dirItem : list) { System.out.printf(dirItem); } } }
b6e7fa48c1e5382321d9b1350ee22783a4962bf1
a33aac97878b2cb15677be26e308cbc46e2862d2
/data/libgdx/TextureMapObject_getOriginX.java
77da87abcab48d0c703148bda84340af1c28c449
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
83
java
/** * @return x axis origin */ public float getOriginX() { return originX; }
2194306978bbf3dc17d318d833e92f5d693fe942
2e2c490012eb5d56a308caf20eff151cc81f1211
/app/src/main/java/ru/yandex/money/education/app/components/view/activities/ActivitySecond.java
bf9524b94c84a466dfdc186e432a6b9ab7b7f612
[]
no_license
raqeta/YandexMoneyEducationApp
8962b94b633716061741d6e25c8faf56f1db1fd2
1f46b38851634bb9e1648660473823fd8c70bb94
refs/heads/master
2020-05-29T21:39:48.177313
2015-08-30T18:37:59
2015-08-30T18:37:59
41,474,999
0
0
null
null
null
null
UTF-8
Java
false
false
2,206
java
package ru.yandex.money.education.app.components.view.activities; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.KeyEvent; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; import ru.yandex.money.education.app.R; import ru.yandex.money.education.app.data.models.EduObj; public class ActivitySecond extends AppCompatActivity { public static final String EXTRA_NAME = "ru.yandex.money.education.app.EXTRA_NAME"; private EduObj eduObj; public static void start(Context context, EduObj data) { Intent intent = new Intent(context, ActivitySecond.class); intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); intent.putExtra(EXTRA_NAME, new EduObj.Parc(data)); context.startActivity(intent); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); EduObj.Parc eduObjParc = getIntent().getParcelableExtra(EXTRA_NAME); if (eduObjParc != null) { eduObj = eduObjParc.getEduObj(); } TextView label = (TextView) findViewById(R.id.label); EditText input = (EditText) findViewById(R.id.input); Button button = (Button) findViewById(R.id.button); input.setText(R.string.hello_world); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(ActivitySecond.this, R.string.hello_world, Toast.LENGTH_SHORT) .show(); } }); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (android.os.Build.VERSION.SDK_INT < 5 && keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) { onBackPressed(); } return super.onKeyDown(keyCode, event); } @Override public void onBackPressed() { // moveTaskToBack(true); } }
ebccf268ea7d76f806ebd8cafcb9bba93e110e56
b77bf23ba60db5794445b8204317ed8b7388a2fd
/net/minecraft/client/resources/data/BaseMetadataSectionSerializer.java
587621538e73b0ce0de7163ba395b6a0b3afb193
[]
no_license
SulfurClient/Sulfur
f41abb5335ae9617a629ced0cde4703ef7cc5f2c
e54efe14bb52d09752f9a38d7282f0d1cd81e469
refs/heads/main
2022-07-29T03:18:53.078298
2022-02-02T15:09:34
2022-02-02T15:09:34
426,418,356
2
0
null
null
null
null
UTF-8
Java
false
false
200
java
package net.minecraft.client.resources.data; public abstract class BaseMetadataSectionSerializer implements IMetadataSectionSerializer { // private static final String __OBFID = "CL_00001098"; }
6af6d09b91ae0f29c7dbd010152660cb00557f28
c6a6b7b91b782a1cb057769985ef3c315c98de06
/FinalProject.java
28ee43894980a2c3132f7ae61606967e5a246222
[]
no_license
matiasfr/ee352final
bee97084a710cdedef2e1062825e2c725bf01da0
4e9f97dbc1049cce27468dc736bd1184dad0c69e
refs/heads/master
2021-01-10T07:22:42.307369
2015-05-04T17:46:53
2015-05-04T17:46:53
34,766,922
0
0
null
null
null
null
UTF-8
Java
false
false
5,357
java
import java.io.*; import java.math.BigInteger; import java.util.Random; /** * Created by idean on 5/3/15. */ public class FinalProject { private static final int SLOTS = 1024; private static final int SLOTS_PER_SET = 2; private static final int SETS = SLOTS / SLOTS_PER_SET; private static final int TOTAL_BITS = 16; private static final int OFFSET_BITS = 5; //32 bytes per slot private static final int SET_BITS = (int) Math.round(Math.log(SETS) / Math.log(2)); //log(slots per set) private static final int TAG_BITS = TOTAL_BITS-(OFFSET_BITS+SET_BITS); private static final int BYTES_PER_SLOT = (int) Math.pow(2,OFFSET_BITS); //unused private static final int NUM_ADDRESSES = 100000; private static final int MISS_PENALTY = 5; private static final boolean USE_LRU = true; private static final String FILE_NAME = "./addresses.txt"; private static long[][] cache = new long[SETS][SLOTS_PER_SET]; //each cell of this 2-d array holds the tag of a slot. private static int hits = 0; private static int misses = 0; private static int cycles = 0; public static void main(String[] args) { try { initializeAddressFile(FILE_NAME); } catch (IOException e) { e.printStackTrace(); } printIntro(); initializeCache(); try(BufferedReader br = new BufferedReader(new FileReader(FILE_NAME))) { for(String line; (line = br.readLine()) != null; ) { if(line.length() != TOTAL_BITS) { throw new RuntimeException("Line was not " + TOTAL_BITS + " bits!"); } String binaryTag = line.substring(0, TAG_BITS); Long tag = (new BigInteger(binaryTag,2)).longValueExact(); String binarySet = line.substring(TAG_BITS, TAG_BITS + SET_BITS); int set = Integer.parseInt(binarySet, 2); boolean found = isFound(tag, cache[set]); if(found) { hits++; } else { misses++; cycles += MISS_PENALTY; place(tag, cache[set]); } } } catch (IOException e) { e.printStackTrace(); } printStatistics(); } private static void initializeCache() { for(int i = 0; i < cache.length; i++) { for(int j = 0; j < cache[0].length; j++) { cache[i][j] = -1; } } } private static void printStatistics() { double hitPercentage = (1.0 * hits)/NUM_ADDRESSES; System.out.println("Hits: " + hits); System.out.println("Misses: " + misses); System.out.println("Runtime: " + cycles + " cycles"); System.out.println("Hit percentage: " + (hitPercentage * 100) + "%"); } private static void place(Long tag, long[] longs) { boolean placed = false; for(int i = 0; i < SLOTS_PER_SET; i++) { if(longs[i] == 0) { longs[i] = tag; placed = true; } } if(!placed) { if(USE_LRU) { pushBackAndPlace(tag, longs); } else { Random r = new Random(); longs[r.nextInt(SLOTS_PER_SET)] = tag; } } } private static void pushBackAndPlace(Long tag, long[] longs) { for(int i = longs.length - 2; i >= 0; i--) { longs[i+1] = longs[i]; } longs[0] = tag; } private static boolean isFound(Long tag, long[] longs) { int slot = 0; while(slot < SLOTS_PER_SET) { if(longs[slot] == tag) { return true; } slot++; } return false; } private static void printIntro() { System.out.println("Starting Simulation..."); System.out.println("Number of slots: " + SLOTS); System.out.println("Number of sets: " + SETS); System.out.println("Number of slots per set: " + SLOTS_PER_SET); System.out.println("Address looks like:"); System.out.println("[ tag: " + TAG_BITS + " bits ][ set:" + SET_BITS + " bits][ offset:" + OFFSET_BITS + " bits]"); System.out.println("------------------------------"); } private static void initializeAddressFile(String fileName) throws IOException { PrintWriter pw = new PrintWriter(new FileWriter(fileName)); for (int i = 0; i < NUM_ADDRESSES; i++) { String zeroes = ""; for(int j = 0; j < OFFSET_BITS; j++) { zeroes += "0"; } String line = randomBinaryNumber(TAG_BITS) + randomBinaryNumber(SET_BITS) + zeroes; pw.write(line); pw.println(); pw.flush(); } pw.close(); } private static String randomBinaryNumber(int length) { Random rg = new Random(); StringBuffer retval = new StringBuffer(""); for(int i = 0; i < length; i++) { int n = rg.nextInt(2); retval.append(Integer.toString(n)); } return retval.toString(); } }
e9e3e19dcb4db2541a8aeb77c9f1f8db814c7d83
bd97ad9c3489e72ad8ee407248059e5908b9a71f
/mall-mbg/src/main/java/com/dunshan/mall/mapper/CmsMemberReportMapper.java
3d7c9cd54d019d4648938b2dbbec364e092f333d
[ "Apache-2.0" ]
permissive
okay456okay/7d-mall-microservice
055a33560b2d9cd9c73e52626ba9d1e99a7f72e8
8cfd98e47208f715b495ce6db39908d8163db927
refs/heads/master
2023-09-04T12:19:37.296256
2021-11-04T02:23:05
2021-11-04T02:23:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
770
java
package com.dunshan.mall.mapper; import com.dunshan.mall.model.CmsMemberReport; import com.dunshan.mall.model.CmsMemberReportExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface CmsMemberReportMapper { long countByExample(CmsMemberReportExample example); int deleteByExample(CmsMemberReportExample example); int insert(CmsMemberReport record); int insertSelective(CmsMemberReport record); List<CmsMemberReport> selectByExample(CmsMemberReportExample example); int updateByExampleSelective(@Param("record") CmsMemberReport record, @Param("example") CmsMemberReportExample example); int updateByExample(@Param("record") CmsMemberReport record, @Param("example") CmsMemberReportExample example); }
966fbd2a17edd49c6719f58c1a20b72f492e3d5c
3b53c2d5c659217a55ea35bc6dc740c7cafc3aa0
/core/src/main/java/wwmm/pubcrawler/inject/MongoRepositoryModule.java
052b0ee722bf8c47facc230f22c5f4d3e43bb66f
[]
no_license
BlueObelisk/pub-crawler
5d9e964b326a1a6c74325f9178a0aff85714c247
764923b723146c267b67e030f2fd5d6cd8e53a7e
refs/heads/master
2022-06-27T10:27:15.615878
2012-06-25T19:14:04
2012-06-25T19:14:04
230,638,482
0
0
null
2022-05-20T21:20:48
2019-12-28T17:04:32
HTML
UTF-8
Java
false
false
1,568
java
package wwmm.pubcrawler.inject; import com.google.inject.AbstractModule; import com.google.inject.Provides; import com.mongodb.DB; import com.mongodb.DBCollection; import wwmm.pubcrawler.repositories.*; import wwmm.pubcrawler.repositories.mongo.*; import wwmm.pubcrawler.tasks.repository.*; import javax.inject.Singleton; /** * @author Sam Adams */ public class MongoRepositoryModule extends AbstractModule { private final DB bibDb; private final DB taskDb; public MongoRepositoryModule(final DB bibDb, final DB taskDb) { this.bibDb = bibDb; this.taskDb = taskDb; } @Override protected void configure() { bind(JournalRepository.class).to(MongoJournalRepository.class); bind(IssueRepository.class).to(MongoIssueRepository.class); bind(ArticleRepository.class).to(MongoArticleRepository.class); bind(TaskRepository.class).to(MongoTaskRepository.class); bind(TaskSpecificationFactory.class).to(GuiceTaskSpecificationFactory.class); } @Provides @Singleton @Journals public DBCollection getJournalCollection() { return bibDb.getCollection("journals"); } @Provides @Singleton @Issues public DBCollection getIssueCollection() { return bibDb.getCollection("issues"); } @Provides @Singleton @Articles public DBCollection getArticleCollection() { return bibDb.getCollection("articles"); } @Provides @Singleton @Tasks public DBCollection getTaskCollection() { return taskDb.getCollection("tasks"); } }
085eca9c231d9bae726310cb2fb67fc58f312b09
84a503479561a69b70e5a7f72c6b17d9120eb27a
/src/com/department/cd/RubriqueBean.java
01e633ca091c2ae3f63197fcf1abf345cfe00cb6
[]
no_license
asmchadi/DepartmentWEB
c76526232e5f9e1fdf03a1a4ec80853bbad8ae43
4b42dc79795a2dd8c83344559ffe3b5b5cdcf671
refs/heads/master
2020-12-25T06:04:58.912157
2016-06-12T20:10:47
2016-06-12T20:10:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,629
java
package com.department.cd; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.ejb.EJB; import javax.faces.application.FacesMessage; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import javax.faces.context.FacesContext; import com.department.ejb.RubriqueService; import com.department.entities.Rubrique; @ManagedBean(name = "aa_rubrique") @SessionScoped public class RubriqueBean implements Serializable { private static final long serialVersionUID = 1L; @EJB private RubriqueService rubService; private List<Rubrique> rubriques; private Rubrique rubrique; public List<Rubrique> getRubriques() { setRubriques(rubService.findByQuery("from Rubrique")); return rubriques; } public List<Rubrique> getParents() { return rubService.findByQuery("from Rubrique where id != " + rubrique.getId()); } public ArrayList<Object> fun() { List<Rubrique> cours = rubService.findAll("parent_id"); ArrayList<Object> lst = new ArrayList<Object>(); ArrayList<Rubrique> lstCour = new ArrayList<Rubrique>(); Rubrique autre = new Rubrique(); autre.setId(-1l); autre.setIntitule("Autre"); Long flag = -1l; for(int i=0;i<cours.size();i++){ System.out.println(cours.get(i).getIntitule()); if(cours.get(i).getParent()==null){ cours.get(i).setParent(autre); } if(i+1 < cours.size() && cours.get(i+1).getParent()==null){ cours.get(i+1).setParent(autre); } lstCour.add(cours.get(i)); if(i+1 < cours.size() && cours.get(i+1).getParent().getId() != flag){ System.out.println(cours.get(i).getParent()); flag = cours.get(i+1).getParent().getId(); ArrayList<Object> lstModule = new ArrayList<Object>(); lstModule.add(0,cours.get(i).getParent()); lstModule.add(1,lstCour); lst.add(lstModule); lstCour = new ArrayList<Rubrique>(); }else if(i+1==cours.size()){ ArrayList<Object> lstModule = new ArrayList<Object>(); lstModule.add(0,cours.get(i).getParent()); lstModule.add(1,lstCour); lst.add(lstModule); } } return lst; } public void setRubriques(List<Rubrique> rubriques) { this.rubriques = rubriques; } public Rubrique getRubrique() { return rubrique; } public void setRubrique(Rubrique rubrique) { this.rubrique = rubrique; } public String save() throws Exception { Rubrique rub = new Rubrique(); if (rubrique.getId() != null) { rub = rubService.findById(rubrique.getId()); } rub.setHtmlContent(rubrique.getHtmlContent()); rub.setIntitule(rubrique.getIntitule()); rub.setIsExtern(rubrique.getIsExtern()); rub.setIsVisible(rubrique.getIsVisible()); rub.setUrl(rubrique.getUrl()); rub.setMenu(rubrique.getMenu()); rub.setPosition(rubrique.getPosition()); rub.setParent(rubService.findById(rubrique.getParent().getId())); if (rubrique.getId() != null) { rubService.update(rub); } else { rubService.create(rub); } FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR, "Operation effecutuer", null); FacesContext.getCurrentInstance().addMessage(null, msg); return ""; } public String display(Long id) { this.rubrique = rubService.findById(id); if (rubrique.getParent()==null) rubrique.setParent(new Rubrique()); return "show.xhtml"; } public String show() { this.rubrique = new Rubrique(); this.rubrique.setParent(new Rubrique()); return "show.xhtml"; } public String delete(Long id) throws Exception { //Rubrique r = rubService.findById(id); Rubrique rub = new Rubrique(); rub.setId(id); rubService.delete(rub); return "index"; } }
3c2fce68e1b462f5b34f5067c234baa0fe3dd657
c38d553b49fc179a93f1fe8c84e0d09a7476233f
/S4/Android/Projet/app/src/main/java/com/projet/MainActivity.java
2d10ee3bf9ab80947082cb5a90f9c97de2e1bee4
[]
no_license
hana69200/Cours
25fda9e2463cb02bf507d31bcffed0eefd742682
205b271f821286bf5ae23ef879404011c73c1aa6
refs/heads/master
2020-05-06T20:10:15.209512
2019-04-07T20:58:18
2019-04-07T20:58:18
180,223,646
1
0
null
2019-04-08T20:00:08
2019-04-08T20:00:08
null
UTF-8
Java
false
false
459
java
package com.projet; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); new JsonGetter().execute("http://perso.univ-lyon1.fr/lionel.buathier/carburants/PrixCarburants_instantane.json"); } }
a0236091d712a1171bba748a83f2b3c6e43ad9dd
fff6e1a17e6b8fc0e51851e6d0a734aa7b749bc9
/Ejercicio Contratar.com/src/Categoria.java
3d89c3207d15ee3a361faec094f7598d3b928cfd
[]
no_license
riegoleonardo/Ejercicios
61033bc6c9e407105e3c1e19b97025e4637915a6
92b83afc17166d27b0dec3a3466811e8d9005e62
refs/heads/master
2021-01-10T05:11:42.858671
2016-03-11T14:46:24
2016-03-11T14:46:24
52,608,588
0
0
null
null
null
null
UTF-8
Java
false
false
106
java
public interface Categoria { public Double sueldoPromedio (Empresa unaEmpresa, Usuario unUsuario); }
a7fd5ba4cfb1bb5afa6239928a58d9ed1e21a45a
c09fe16dd5c2da877276b5de2a79eb4becc3fe3c
/ScannerExample.java
7b5ed36cd4526e507180eba5a3922e17fd74814b
[]
no_license
TJgrapes/SmallJavaApplications
54341c93d918f787d6382bcf9c9403e3e421c4fd
e99753c839e8cb8566765492c85b5978ce12ae9c
refs/heads/master
2020-05-14T08:28:44.741292
2019-04-16T16:14:36
2019-04-16T16:14:36
181,723,628
1
0
null
null
null
null
UTF-8
Java
false
false
400
java
import java.util.Scanner; class ScannerExample { public static void main (String [] args) { // Allows user to read a number from System.in Scanner sc = new Scanner(System.in); System.out.println("Enter a number: "); /* nextInt Scans the next token of the input as an int and returns the int scanned from the input */ int n = sc.nextInt(); System.out.println("The given number : " + n ); } }
e729a56c50fafacb50ec0fdb9bf6f78f634be221
b93456d77467c0525c2fe79fbad1aa99ddb8728c
/src/Vector2f.java
b8fc2ff87b022e0267cac5aa1b9174c2bd43ee4f
[]
no_license
c272/gadzooks
086cc7c756730be1425bf3afb90f4acf48a79ce6
26e5c5cf46b1ddffe6fdd19e0762d1f1d957034a
refs/heads/master
2023-03-09T04:41:34.148635
2021-02-23T22:04:12
2021-02-23T22:04:12
337,177,140
0
0
null
null
null
null
UTF-8
Java
false
false
887
java
/** * Represents a single vector with an X and Y direction in Rectinvaders. */ public class Vector2f { //X and Y of the vector. public float X; public float Y; /** * Constructor for the vector with basic integer parameters. * @param x The X coordinate of the vector. * @param y The Y coordinate of the vector. */ public Vector2f(float x, float y) { X = x; Y = y; } /** * Constructor for copying another Vector2. * @param toCopy The vector to copy. */ public Vector2f(Vector2f toCopy) { X = toCopy.X; Y = toCopy.Y; } /** * Equals override for vectors. */ @Override public boolean equals(Object obj) { if (obj.getClass() != this.getClass()) { return false; } var other = (Vector2f)obj; return other.X == X && other.Y == Y; } }
59f0a99647c622102e560c0cbd9d13b4a25ab2ef
2eac4f51a2e4363349e852ce3af8ca234c1a13f7
/fx/trunk/fx-remote/src/main/java/com/jeff/fx/remote/view/NodeType.java
a6293dbbac811f5ea2b56e07a896b1367a75fa19
[]
no_license
johnffracassi/jcfx
4e19ac0fdba174db0fe3eb2fc8848652a5c99c11
b0a2349fdd1de0bf60c7ccf9a17af4e43e0a1727
refs/heads/master
2016-09-05T15:13:49.981403
2011-07-21T05:54:28
2011-07-21T05:54:28
41,260,482
0
0
null
null
null
null
UTF-8
Java
false
false
85
java
package com.jeff.fx.remote.view; public enum NodeType { Server, Client, Monitor }
[ "jeffcann@360c4b46-674e-11de-9b35-9190732fe600" ]
jeffcann@360c4b46-674e-11de-9b35-9190732fe600
7b9c39a8ff49d6aef3c6fbc4030434535cd468ab
4647040da0fa6cf725d6b636ca073831e506dfe0
/practice/src/practice2/ButtonExample.java
99e865a746fd3735a7eeb3f8a12b66f2c97547b9
[]
no_license
younheeJang/javaPjt
458413990b07a8c91771104658e398abf0638ae8
522c11022855619328a1039fdd0cee1502bde6c0
refs/heads/master
2020-03-27T02:37:23.279345
2018-08-23T05:21:13
2018-08-23T05:21:13
145,804,582
0
0
null
null
null
null
UTF-8
Java
false
false
252
java
package practice2; public class ButtonExample { public static void main(String[] args) { Button btn = new Button(); btn.setOnClickListener(new CallListener()); btn.touch(); btn.setOnClickListener(new MessageListener()); btn.touch(); } }
be4ee18190a9a5a94dbeebdcddf678e75322d35a
f2c581616e2e2a951f0863b69dbc2b08bc9d0895
/WidgetSample/app/src/main/java/com/androidsample/widget/CounterWidgetProvider.java
ef4691b12e4af4ad87dc92cd90c7deb76f7cd078
[ "Apache-2.0" ]
permissive
dhawankrish654/android-samples
384dbb74af0735a0d74018d0d89c1e41c9f3277e
2bea34982e995b791066760206c4916e8863f1ff
refs/heads/master
2022-06-10T02:20:40.817898
2020-05-03T15:01:30
2020-05-03T15:01:30
260,943,742
2
1
Apache-2.0
2020-05-03T14:32:33
2020-05-03T14:32:33
null
UTF-8
Java
false
false
3,374
java
package com.androidsample.widget; import android.app.PendingIntent; import android.appwidget.AppWidgetManager; import android.appwidget.AppWidgetProvider; import android.content.ComponentName; import android.content.Context; import android.content.Intent; import android.util.Log; import android.widget.RemoteViews; import java.util.HashMap; /** * Created by Keval on 21-Nov-16. * * @author {@link 'https://github.com/kevalpatel2106'} */ public class CounterWidgetProvider extends AppWidgetProvider { public static final String ACTION_RESET = "com.counter.widget.ACTION_RESET"; public static final String ACTION_INCREASE = "com.counter.widget.ACTION_INCREASE"; public static final String ARG_WIDGET_ID = "arg_widget_id"; public static final String ARG_OPERATION = "arg_operation_id"; private static HashMap<Integer, Integer> mCounts = new HashMap<>(); @Override public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { for (int currentWidgetId : appWidgetIds) { RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.counter_widget_layout); Log.d("count", mCounts.get(currentWidgetId) + ""); if (!mCounts.containsKey(currentWidgetId)) mCounts.put(currentWidgetId, PendingIntent.FLAG_UPDATE_CURRENT); views.setTextViewText(R.id.tvCount, mCounts.get(currentWidgetId) + ""); Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE); intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds); intent.putExtra(ARG_WIDGET_ID, currentWidgetId); intent.putExtra(ARG_OPERATION, ACTION_INCREASE); PendingIntent pending = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); views.setOnClickPendingIntent(R.id.btn_plus_one, pending); intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE); intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds); intent.putExtra(ARG_WIDGET_ID, currentWidgetId); intent.putExtra(ARG_OPERATION, ACTION_RESET); pending = PendingIntent.getBroadcast(context, 0, intent, 0); views.setOnClickPendingIntent(R.id.btn_plus_one, pending); appWidgetManager.updateAppWidget(currentWidgetId, views); } } @Override public void onReceive(Context context, Intent intent) { super.onReceive(context, intent); int widgetId = intent.getIntExtra(ARG_WIDGET_ID, -1); Log.d("widget", widgetId + " " + mCounts.keySet().toString()); if (!mCounts.containsKey(widgetId)) return; switch (intent.getStringExtra(ARG_OPERATION)) { case ACTION_RESET: mCounts.put(widgetId, 0); break; case ACTION_INCREASE: int count = mCounts.get(widgetId); count++; mCounts.put(widgetId, count); break; } AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context); ComponentName thisAppWidget = new ComponentName(context.getPackageName(), CounterWidgetProvider.class.getName()); onUpdate(context, appWidgetManager, appWidgetManager.getAppWidgetIds(thisAppWidget)); } }
16f0ac3dd28d99a34b43ea059758f74993ed80e4
439a309797ac1a2edcb0337cd7ce5054ebcd260e
/src/main/java/com/dnastack/ga4gh/tables/cli/cmd/ListTables.java
2104fb354c56379c542e88e5c3d227368308c14f
[ "Apache-2.0" ]
permissive
DNAstack/tables-api-cli
2cce744aec8e1756ec7ec3e9db014c0b85f48613
ad64849efa3f65d3515afa6be745de7d42a1112b
refs/heads/master
2021-09-01T11:10:43.382731
2021-08-18T15:09:00
2021-08-18T15:09:00
191,970,794
0
0
Apache-2.0
2021-02-18T21:21:28
2019-06-14T15:56:43
Java
UTF-8
Java
false
false
1,259
java
package com.dnastack.ga4gh.tables.cli.cmd; import com.dnastack.ga4gh.tables.cli.config.Config; import com.dnastack.ga4gh.tables.cli.config.ConfigUtil; import com.dnastack.ga4gh.tables.cli.input.TableFetcher; import com.dnastack.ga4gh.tables.cli.input.TableFetcherFactory; import com.dnastack.ga4gh.tables.cli.output.OutputWriter; import com.dnastack.ga4gh.tables.cli.util.option.OutputOptions; import java.io.IOException; import picocli.CommandLine.Command; import picocli.CommandLine.Mixin; @Command(name = "list", mixinStandardHelpOptions = true, description = "List Tables", requiredOptionMarker = '*', sortOptions = false) public class ListTables extends AuthorizedCmd { @Mixin private OutputOptions outputOptions; @Override public void runCmd() { outputOptions.setDestinationTableName(""); Config config = ConfigUtil.getUserConfig(); TableFetcher tableDataFetcher = TableFetcherFactory .getTableFetcher(config.getApiUrl(), false, config.getRequestAuthorization()); try (OutputWriter outputWriter = new OutputWriter(outputOptions)) { outputWriter.write(tableDataFetcher.list()); } catch (IOException e) { throw new RuntimeException(e); } } }
36bc0cf610094350601fc39590ce9278192bae08
f116e4a9319f6e7aa7362d24d60e60279247bd50
/product/server/src/main/java/com/spring/cloud/product/enums/ProductStatusEnum.java
ab38bef6d95dfd1297abdf0dc78c5ffd66a4e46e
[]
no_license
WonderBo/SpringCloud
b2076054b1a50c788e1cb9356635a47a64f5af2e
dc3a75622d11ee1e64827af2ec9e2c5d5775e657
refs/heads/master
2022-06-22T03:35:55.453113
2020-05-31T13:06:08
2020-05-31T13:06:08
251,022,912
0
0
null
2022-06-21T03:28:03
2020-03-29T12:07:37
Java
UTF-8
Java
false
false
421
java
package com.spring.cloud.product.enums; import lombok.Getter; /** * 商品状态 * * Description: product * Created by 汪波 on 2020/4/4 20:30 */ @Getter public enum ProductStatusEnum { UP(0, "在架"), DOWN(1, "下架"), ; private Integer code; private String message; ProductStatusEnum(Integer code, String message) { this.code = code; this.message = message; } }
63dfcf7c84a62370c54ca73ba548c3b979af33ce
8004a04fd713106ad4b80c17204185c6ef869692
/src/main/java/com/amazon/commons/DriverInstance.java
1345c81826cc999c0f350ab9a2d5e014f06f9ef3
[]
no_license
damandeepsingh13/myProject
41b2055312eed18103dc0e14e08aa1401c48eaf1
d5d16a3788894de72b1f48a4b7c9a34c1a2378a4
refs/heads/master
2020-04-13T05:23:48.518557
2018-12-24T13:18:30
2018-12-24T13:18:30
162,990,874
0
0
null
null
null
null
UTF-8
Java
false
false
588
java
package com.amazon.commons; import java.util.ArrayList; import java.util.List; import java.util.concurrent.TimeUnit; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; public class DriverInstance { WebDriver driver; public WebDriver getDriverInstance() { System.setProperty("webdriver.chrome.driver", "Utils\\chromedriver.exe"); driver = new ChromeDriver(); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); driver.navigate().to("https://www.amazon.in"); return driver; } }
919fc1d4ab6c705d3a3c74100aa4cba116831287
b47e5d770eda24535fa8c04bd4209eabecf98557
/Practice_Java/src/DBUpdateService/DBQuery_Setting.java
24aa2d31abd446cf3fe25b3eaa07e1ed5625cb93
[]
no_license
Elizabeth-ts/Java_Projects
8b0c6769c01cb39ef061f69c3fb07beeae7291fe
70bb4915ebaf9cb35d711343e63d62fc69819219
refs/heads/master
2021-06-01T08:16:45.712684
2016-06-29T01:46:13
2016-06-29T01:46:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
618
java
/* * 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 DBUpdateService; /** * * @author Arvin */ public interface DBQuery_Setting { public static final String URL = "jdbc:mysql://localhost:3306/"; public static final String USER = "root"; public static final String PASSWORD = "johnson5414"; public static final String DATABASE_NAME = "userDB"; public static final String QUERY_CREATE_DATABASE = "CREATE DATABASE IF NOT EXISTS " + DATABASE_NAME + ";"; }
88a23a06a53e84987d8d38aeec5595f23f8c02bb
c4f3835f129ad013a95845d1b7d5b1b228970138
/app/src/main/java/com/example/wlsgns/rnd_jin/UploadPhoto.java
180b9db631035888b5eb66c94fcec84f9b15d8ae
[]
no_license
carfelre92/RnDBackUp
49603f5a75da1e3c81be61c5b7e4b88c52e3f37d
5ae97240229a45dc3c40b6519029e05f38d83d4d
refs/heads/master
2021-07-11T04:35:52.019449
2017-10-12T14:52:22
2017-10-12T14:52:22
104,842,799
0
0
null
null
null
null
UTF-8
Java
false
false
4,015
java
package com.example.wlsgns.rnd_jin; import android.content.Context; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; import org.w3c.dom.Text; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; public class UploadPhoto extends AppCompatActivity implements View.OnClickListener { Button buttonSave,buttonLoad; TextView textView; ListView listView1; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_upload_photo); buttonSave = (Button) findViewById(R.id.buttonSave); buttonLoad = (Button) findViewById(R.id.buttonLoad); textView = (TextView) findViewById(R.id.textView); listView1 = (ListView) findViewById(R.id.listView1); //Initializing listener to buttons buttonSave.setOnClickListener(this); buttonLoad.setOnClickListener(this); File mydir = new File("data/data/com.example.wlsgns.rnd_jin/saveFolder"); //Creating an internal dir; if (!mydir.exists()) { mydir.mkdirs(); } else { Toast.makeText(getApplicationContext(), "The folder "+mydir.toString()+" exist" , Toast.LENGTH_SHORT).show(); } } public void fileSave(){ String path = "data/data/com.example.wlsgns.rnd_jin/saveFolder"; String time = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); String foodName = "apple"; String string = "Hello world!"; String filename = time + "_" +foodName; FileOutputStream fos; try { File file = new File(path,filename+".txt"); fos = new FileOutputStream(file); fos.write(string.getBytes()); fos.close(); Toast.makeText(getApplicationContext(), "File name with "+filename+" has been saved", Toast.LENGTH_SHORT).show(); } catch (Exception e) { e.printStackTrace(); } } public void fetchFiles(){ //textView.setText(""); String path = "data/data/com.example.wlsgns.rnd_jin/saveFolder"; File directory = new File(path); File[] files = directory.listFiles(); List<String> filesNameList = new ArrayList<>(); for(int i=0; i<files.length; i++){ filesNameList.add(files[i].getName()); //textView.append(files[i].getName()+"\n"); } ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, filesNameList); listView1.setAdapter(arrayAdapter); } public void fetchFile(){ try{ String msg; FileInputStream fis = openFileInput("myfile"); InputStreamReader isr = new InputStreamReader(fis); BufferedReader br = new BufferedReader(isr); StringBuffer sb = new StringBuffer(); while((msg=br.readLine())!=null){ sb.append(msg+"\n"); } Toast.makeText(getApplicationContext(), sb.toString(), Toast.LENGTH_SHORT).show(); } catch(Exception e) { e.printStackTrace(); } } public void printFiles(){ String path = "data/data/com.example.wlsgns.rnd_jin"; } @Override public void onClick(View view) { if(view == buttonSave){ fileSave(); } if(view == buttonLoad){ fetchFiles(); } } }
5e801ffdb93f8c40c8a57d5173d0e287d6739ec8
5a137b8ff95b5efa21b4e82308e16f0af11ef7ee
/src/model/Administrateur.java
40765ccb7f9b7755c9ae83f179b68b2fb846cc3b
[]
no_license
Waguy02/AppliBoutique
a8f0bf431b5234193ceee7c5fd448a262206a8aa
bfc2bbf3525c8f802bfb2208d8dea60d126c345d
refs/heads/master
2021-06-29T00:14:24.594698
2021-02-18T09:15:49
2021-02-18T09:15:49
219,130,511
0
0
null
null
null
null
UTF-8
Java
false
false
2,136
java
/* * 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 model; import interfaces.InterfaceAdministrateur; import javafx.collections.ObservableList; import dbManager.Manager; import javafx.collections.FXCollections; /** * * @author LOIC KWATE DASSI */ public class Administrateur extends Employe implements InterfaceAdministrateur { @Override public void creerEmploye(Employe employe) { if (employe == null) { throw new NullPointerException(); } Manager.em.getTransaction().begin(); Manager.em.persist(employe); Manager.em.getTransaction().commit(); } @Override public void modifierProduit(Produit produit) { } @Override public ObservableList<Employe> listeEmployes() { return FXCollections.observableList(Manager.em.createNamedQuery("Employe.findAll", Employe.class).getResultList()); } @Override public ObservableList<Fournisseur> listeFournisseur() { return FXCollections.observableList(Manager.em.createNamedQuery("Fournisseur.findAll", Fournisseur.class).getResultList()); } @Override public void ajouterFournisseur(Fournisseur fournisseur) { if (fournisseur == null) { throw new NullPointerException(); } Manager.em.getTransaction().begin(); Manager.em.persist(fournisseur); Manager.em.getTransaction().commit(); } @Override public void ajouterProduitFournisseur(String idFournisseur, String idProduit) { if (idFournisseur == null || idProduit == null) { throw new NullPointerException(); } ProduitFournisseurId pfi = new ProduitFournisseurId(); pfi.setFournisseurid(idFournisseur); pfi.setProduitid(idProduit); ProduitFournisseur pf = new ProduitFournisseur(); pf.setProduitFournisseurid(pfi); Manager.em.getTransaction().begin(); Manager.em.persist(pf); Manager.em.getTransaction().commit(); } }
94759e7f1b3817c316bb139d560afe1b0975ad29
d116c326d035a2d375ab9ef941473edddaa036e6
/Java_21_FileWriter/src/com/biz/files/Print_01.java
800fe6536987ff2c2a8cbee6d7f07b2c16d314d4
[]
no_license
kol2005/JAVAWORKSS
537716a8f30498fbb8ed167dc0b7f8a39d89c35d
fffae5fd6827af96b56404211eed99d63b3e2190
refs/heads/master
2020-09-04T00:24:46.817028
2019-11-04T23:35:31
2019-11-04T23:35:31
219,616,377
0
0
null
null
null
null
UHC
Java
false
false
1,062
java
package com.biz.files; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; public class Print_01 { public static void main(String[] args) { String fileName = "src/com/biz/files/data3.txt"; FileWriter fileWriter = null; BufferedWriter buffer = null; /* * System.out.print*() 의 console 출력 method 와 * 같은 형식으로 파일에 text 를 기록하기 위해서 * PrintWriter 클래스를 활용한다 */ PrintWriter out = null; try { fileWriter = new FileWriter(fileName); buffer = new BufferedWriter(fileWriter); out = new PrintWriter(buffer); out.println("대한민국만세"); out.printf("%5d", 100); out.print("우리나라만세\n"); out.flush(); out.println("대한민국만세"); out.printf("%5d", 100); out.print("우리나라만세\n"); out.close(); buffer.close(); fileWriter.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
1e0bbd9cb79e47283e5f7332070dc66ec52a1aa3
9b70c74d4633a127787df1a101e72da886a9fe4c
/test/vyger/first_alpha/src/wotlas/libs/wizard/WizardResourceLocator.java
c43bfca4ee96766822e0653ba12045e7c19ac5dd
[]
no_license
wotlas/sourceforge-cvs
032d221b5f740f9c33915ff88f72019b966b080d
2064a5bab42218b5fd3898061700ebabb6a412f9
refs/heads/master
2020-05-23T16:18:13.359826
2010-08-18T20:42:39
2010-08-18T20:42:39
186,845,340
0
0
null
null
null
null
UTF-8
Java
false
false
1,889
java
/* * Light And Shadow. A Persistent Universe based on Robert Jordan's Wheel of Time Books. * Copyright (C) 2001-2002 WOTLAS Team * * 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; either version 2 * of the License, or (at your option) any later version. * * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package wotlas.libs.wizard; import java.awt.Image; import javax.swing.ImageIcon; /** To locate resources needed by the JWizard : images, button images, steps directory. * * @author Aldiss */ public interface WizardResourceLocator { /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/ /** Returns the wanted image icon from the GUI directory. * * @param imageName imageName with or without the complete resource path. * @return ImageIcon, null if the image was not found. */ public ImageIcon getImageIcon( String imageName ); /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/ /** Returns the wanted image from the GUI directory. * * @param imageName imageName with or without the complete resource path. * @return Image, null if the image was not found. */ public Image getGuiImage( String imageName ); /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -*/ }
c50ecccc920a1f57e0f7445879720da9449b8e32
c885ef92397be9d54b87741f01557f61d3f794f3
/tests-without-trycatch/Codec-11/org.apache.commons.codec.net.QuotedPrintableCodec/BBC-F0-opt-30/2/org/apache/commons/codec/net/QuotedPrintableCodec_ESTest_scaffolding.java
64a41d481c4e5605152dbcaf64ad4a45525ed7ee
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
3,939
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Wed Oct 13 19:49:36 GMT 2021 */ package org.apache.commons.codec.net; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After; import org.evosuite.runtime.sandbox.Sandbox; import org.evosuite.runtime.sandbox.Sandbox.SandboxMode; @EvoSuiteClassExclude public class QuotedPrintableCodec_ESTest_scaffolding { @org.junit.Rule public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); @BeforeClass public static void initEvoSuiteFramework() { org.evosuite.runtime.RuntimeSettings.className = "org.apache.commons.codec.net.QuotedPrintableCodec"; org.evosuite.runtime.GuiSupport.initialize(); org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); org.evosuite.runtime.classhandling.JDKClassResetter.init(); setSystemProperties(); initializeClasses(); org.evosuite.runtime.Runtime.getInstance().resetRuntime(); } @Before public void initTestCase(){ threadStopper.storeCurrentThreads(); threadStopper.startRecordingTime(); org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); org.evosuite.runtime.GuiSupport.setHeadless(); org.evosuite.runtime.Runtime.getInstance().resetRuntime(); org.evosuite.runtime.agent.InstrumentingAgent.activate(); } @After public void doneWithTestCase(){ threadStopper.killAndJoinClientThreads(); org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); org.evosuite.runtime.classhandling.JDKClassResetter.reset(); resetClasses(); org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); } public static void setSystemProperties() { /*No java.lang.System property to set*/ } private static void initializeClasses() { org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(QuotedPrintableCodec_ESTest_scaffolding.class.getClassLoader() , "org.apache.commons.codec.StringDecoder", "org.apache.commons.codec.Encoder", "org.apache.commons.codec.BinaryEncoder", "org.apache.commons.codec.EncoderException", "org.apache.commons.codec.DecoderException", "org.apache.commons.codec.StringEncoder", "org.apache.commons.codec.Decoder", "org.apache.commons.codec.net.Utils", "org.apache.commons.codec.binary.StringUtils", "org.apache.commons.codec.net.QuotedPrintableCodec", "org.apache.commons.codec.BinaryDecoder" ); } private static void resetClasses() { org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(QuotedPrintableCodec_ESTest_scaffolding.class.getClassLoader()); org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses( "org.apache.commons.codec.net.QuotedPrintableCodec", "org.apache.commons.codec.EncoderException", "org.apache.commons.codec.binary.StringUtils", "org.apache.commons.codec.DecoderException", "org.apache.commons.codec.net.Utils" ); } }
90d539b963a12fd742c3c25427740ee28cdc93fd
b8cec19d1b6dc9862a5ab3d960fb3792805182e3
/CSC109/Homework09.09/src/Employee.java
c9837908c82d25ecec249fb38ea9efe8a83a570f
[ "MIT" ]
permissive
CraftingGamerTom/wsu-computer-science
28d1d649949f367db8cb3e19147f9312ba4a4a1a
aa40fc95a84ac95535284048f6f572def1375f7d
refs/heads/master
2023-01-20T19:59:58.099211
2020-12-04T10:06:15
2020-12-04T10:06:15
255,235,984
0
0
MIT
2020-04-28T09:41:12
2020-04-13T05:05:30
HTML
UTF-8
Java
false
false
1,099
java
/** * Creates an employee object for data management. * * @version 0.1 * @author TomRokickiii * */ public class Employee { private String name; private double salary; /** * Creates a new Employee Object * * @param name * the name of the employee. * @param salary * How much the employee earns. */ public Employee(String name, double salary) { this.name = name; this.salary = salary; } /** * Gets name * * @return name for the employee */ public String getName() { return name; } /** * Gets salary * * @return salary integer for the employee's wage. */ public double getSalary() { return salary; } /** * Creates a formated string for the employees name and wage. * * @return a string containing wage and name of employee. */ public String toString() { return "Employee[name=" + this.getName() + ",salary=" + this.getSalary() + "]"; } }
0a9a49534abfff1d9121ebf3d639d1efebbf34bc
039f02093991b79cfabcca34dd71dc7c3d2650af
/app/src/main/java/com/example/maishuling/myapplication/MainActivity.java
c5c469870e7dcae63c3cc2a5c72b610c3a79b62c
[]
no_license
bluepearlling/MyApplicationG
97c3addd80130c540caa5096c81daba99cb92c8e
902fea387ff2a6cdd4824ae40857d14f73ab3510
refs/heads/master
2020-03-24T14:41:49.266258
2018-09-22T07:53:24
2018-09-22T07:53:24
142,774,506
0
0
null
null
null
null
UTF-8
Java
false
false
2,302
java
package com.example.maishuling.myapplication; import android.content.Intent; import android.os.AsyncTask; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.ProtocolException; import java.net.URL; public class MainActivity extends AppCompatActivity implements onTaskCompleted { private Button testButton; TextView httpResult ; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); testButton = (Button) findViewById(R.id.tryButton); testButton.setOnClickListener(new AwesomeButtonClick()); // httpResult = (TextView) findViewById(R.id.httpView); Button LoginButton = (Button) findViewById(R.id.loginButton); LoginButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { Intent i = new Intent(MainActivity.this, HomePage.class); startActivity(i); } } ); } private void awesomeButtonClicked() { testButton.setText("AWESOME!"); asyncTask task = new asyncTask(MainActivity.this); task.execute(); } class AwesomeButtonClick implements View.OnClickListener { @Override public void onClick(View v) { awesomeButtonClicked(); } } @Override public void onTaskCompleted(String response) { // Just showing the response in a Toast message Toast.makeText(getApplicationContext(), response, Toast.LENGTH_LONG).show(); //httpResult.setText(response); Log.v("toast",response); } }
d3255bb1bbda7c82f8b946a3f25ac39c9f164d33
1ca8beb4a06ce5efec0e4967c0328930e0a4964a
/src/ServicesScolarite/MenuTableViewController.java
236a6be06e3bf4c02616d7e1ca57c196a73f3452
[]
no_license
jaweherbensalah/MySchool-Desktop
46591410182f1b2e25ae9e7d2fc5004f553d649c
36e7227d133caffafef0273a001346d58ea75f14
refs/heads/master
2022-11-06T15:32:33.528672
2020-05-29T11:00:27
2020-05-29T11:00:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
13,131
java
/* * 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 ServicesScolarite; import StudentServices.ListServicesController; import static StudentServices.ListServicesController.infoBox1; import java.io.File; import java.io.IOException; import java.net.URL; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ResourceBundle; import java.util.logging.Level; import java.util.logging.Logger; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.fxml.Initializable; import javafx.scene.Node; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.ComboBox; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.image.ImageView; import javafx.scene.input.MouseEvent; import javafx.stage.Stage; import Entites.Menu; import pidevfinal.ConnecterController; import pidevfinal.Directeur_dashboardController; import pidevfinal.PidevFinal; /** * FXML Controller class * * @author USER */ public class MenuTableViewController implements Initializable { @FXML private ImageView ecole; @FXML private ImageView dash; @FXML private Button dashboard; @FXML private Button enseignant; @FXML private ImageView res; @FXML private Button Résultats; @FXML private ImageView trans; @FXML private Button transport; @FXML private Button message; @FXML private ImageView ms; @FXML private ImageView ens; @FXML private Button evenement; @FXML private ImageView ev; @FXML private Button menu; @FXML private ImageView me; @FXML private ComboBox<String> deconnexion; @FXML private ImageView ne; @FXML private Button inscription; @FXML private ImageView etu; @FXML private Button affecterEe; @FXML private ImageView abs; @FXML private Button AjouterAbs; @FXML private ImageView st; @FXML private Button editMenuButton1; @FXML private Button editMenuButton; @FXML private TableView<Menu> menuTable; @FXML private TableColumn<Menu, Integer> menuIDColumn; @FXML private TableColumn<Menu, String> itemsColumn; @FXML private TableColumn<Menu, String> prixColumn; ObservableList<String> liste_profil = FXCollections.observableArrayList(); /** * Initializes the controller class. */ @Override public void initialize(URL url, ResourceBundle rb) { editMenuButton.setDisable(true); // confgure the table columns menuIDColumn.setCellValueFactory(new PropertyValueFactory<Menu, Integer>("id")); itemsColumn.setCellValueFactory(new PropertyValueFactory<Menu, String>("items")); prixColumn.setCellValueFactory(new PropertyValueFactory<Menu, String>("prix")); try{ loadMenues(); } catch (SQLException e) { System.err.println(e.getMessage()); } initProfil(); dash.setImage(Directeur_dashboardController.img1); ecole.setImage(Directeur_dashboardController.img2); ens.setImage(Directeur_dashboardController.img3); res.setImage(Directeur_dashboardController.img4); trans.setImage(Directeur_dashboardController.img5); ms.setImage(Directeur_dashboardController.img6); ev.setImage(Directeur_dashboardController.img7); me.setImage(Directeur_dashboardController.img8); ne.setImage(Directeur_dashboardController.img9); etu.setImage(Directeur_dashboardController.img10); abs.setImage(Directeur_dashboardController.img11); st.setImage(Directeur_dashboardController.img16); } public void loadMenues() throws SQLException { ObservableList<Menu> menues = FXCollections.observableArrayList(); Connection conn = null; Statement statement = null; ResultSet resultSet = null; try{ //1. connect to the database conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/pidev","root",""); //2. create a statement object statement = conn.createStatement(); //3. create the SQL query resultSet = statement.executeQuery("SELECT * FROM menu order by items"); //4. create menu objects from each record while (resultSet.next()) { Menu newMenu = new Menu(resultSet.getString("items"), resultSet.getString("prix")); newMenu.setId(resultSet.getInt("id")); newMenu.setPhoto(new File(resultSet.getString("photo"))); menues.add(newMenu); } menuTable.getItems().addAll(menues); } catch (Exception e) { System.err.println(e); } finally { if (conn != null) conn.close(); if(statement != null) statement.close(); if(resultSet != null) resultSet.close(); } } /** * If a user has been selected in the table, enable the edit button */ @FXML private void dashboardButtonAction(ActionEvent event) { FXMLLoader loader = new FXMLLoader(); loader.setLocation(PidevFinal.class.getResource("/pidevfinal/Directeur_dashboard.fxml")); Parent root = null; try { root = loader.load(); } catch(IOException ex){} Scene sc = new Scene(root); Stage second = new Stage(); second.setScene(sc); second.show(); Stage first = (Stage)abs.getScene().getWindow(); first.close(); } @FXML private void enseignantButtonAction(ActionEvent event) { FXMLLoader loader = new FXMLLoader(); loader.setLocation(PidevFinal.class.getResource("/pidevfinal/admin_enseignant.fxml")); Parent root = null; try { root = loader.load(); } catch(IOException ex){} Scene sc = new Scene(root); Stage second = new Stage(); second.setScene(sc); second.show(); Stage first = (Stage)abs.getScene().getWindow(); first.close(); } @FXML private void RésultatsButtonAction(ActionEvent event) throws IOException { Parent root = FXMLLoader.load(getClass().getResource("/pidevfinal/AjoutEmploi.fxml")); Stage stage = new Stage(); Scene scene = new Scene(root); String css = PidevFinal.class.getResource("styleAjout.css").toExternalForm(); scene.getStylesheets().add(css); stage.setScene(scene); stage.show(); } @FXML private void transportButtonAction(ActionEvent event) { FXMLLoader loader = new FXMLLoader(); loader.setLocation(PidevFinal.class.getResource("/ServicesScolarite/TransportTableView.fxml")); Parent root = null; try { root = loader.load(); } catch(IOException ex){} Scene sc = new Scene(root); Stage second = new Stage(); second.setScene(sc); second.show(); Stage first = (Stage)abs.getScene().getWindow(); first.close(); } @FXML private void messageButtonAction(ActionEvent event) { } @FXML private void evenementButtonAction(ActionEvent event) { FXMLLoader loader = new FXMLLoader(); loader.setLocation(PidevFinal.class.getResource("/myschoolgraphique/FXML.fxml")); Parent root = null; try { root = loader.load(); } catch(IOException ex){} Scene sc = new Scene(root); Stage second = new Stage(); second.setScene(sc); second.show(); Stage first = (Stage)abs.getScene().getWindow(); first.close(); } @FXML private void menuButtonAction(ActionEvent event) { FXMLLoader loader = new FXMLLoader(); loader.setLocation(PidevFinal.class.getResource("/ServicesScolarite/MenuTableView.fxml")); Parent root = null; try { root = loader.load(); } catch(IOException ex){} Scene sc = new Scene(root); Stage second = new Stage(); second.setScene(sc); second.show(); Stage first = (Stage)abs.getScene().getWindow(); first.close(); } @FXML private void deconnexionAction(ActionEvent event) { String p = pidevfinal.ConnecterController.n; String v = "deconnexion"; String o = "profil"; String m = deconnexion.getValue(); if (m.equals(v)) { FXMLLoader loader = new FXMLLoader(); loader.setLocation(PidevFinal.class.getResource("/pidevfinal/connecter.fxml")); Parent root = null; try { root = loader.load(); } catch(IOException ex){} Scene sc = new Scene(root); Stage second = new Stage(); second.setScene(sc); second.show(); Stage first = (Stage)abs.getScene().getWindow(); first.close(); } } @FXML private void inscriptionButttonAction(ActionEvent event) throws IOException { SceneChanger sc = new SceneChanger(); sc.changeScenes(event, "/RegisterValidation/TakeOrder.fxml", "abonnements"); } @FXML private void AffecterEleveAction(ActionEvent event) { } @FXML private void AjouterAbsenceAction(ActionEvent event) { } @FXML private void afficherstat(ActionEvent event) throws IOException { SceneChanger sc = new SceneChanger(); sc.changeScenes(event, "/RegisterValidation/statistiqueInscriptions.fxml", "Statistique Elève "); } @FXML private void deleteButtonPushed(ActionEvent event) { Connection conn = null; Statement statement = null; ResultSet resultSet = null; Menu tableIndex = this.menuTable.getSelectionModel().getSelectedItem(); int tempMenuid = -1; try{ tempMenuid = tableIndex.getId(); }catch(Exception e){ infoBox1("no item selected!", null, "Error"); } if(tempMenuid >= 0){ String query = "DELETE FROM menu WHERE id = ? "; java.sql.PreparedStatement pst; try { //1. connect to the database conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/pidev","root",""); pst = conn.prepareStatement(query); pst.setInt(1, tempMenuid); pst.execute(); menuTable.getItems().remove(tableIndex); menuTable.refresh(); menuTable.getSelectionModel().clearSelection(); // loadMenues(); } catch (SQLException ex) { Logger.getLogger(ListServicesController.class.getName()).log(Level.SEVERE, null, ex); }catch(Exception e){ infoBox1("no item selected!", null, "Error"); } } else { System.out.println("no selction made"); } } @FXML private void newMenuButtonPushed(ActionEvent event) throws IOException { SceneChanger sc = new SceneChanger(); sc.changeScenes(event, "NewMenuView.fxml", "Create New Menu"); } @FXML private void editButtonPushed(ActionEvent event) throws IOException { SceneChanger sc = new SceneChanger(); Menu menu = this.menuTable.getSelectionModel().getSelectedItem(); NewMenuViewController npvc = new NewMenuViewController(); System.out.println(menu.getPhoto().getCanonicalPath()); sc.changeScenes(event, "NewMenuView.fxml", "Edit menu", menu, npvc); } @FXML private void menuSelected(MouseEvent event) { editMenuButton.setDisable(false); } private void initProfil() { String p = pidevfinal.ConnecterController.n; String v = "deconnexion"; String o = "profil"; liste_profil.addAll(p, o, v); deconnexion.setItems(liste_profil); } }
8f40ae0630239225600c7b6f819861c769d88f99
f4bb15f5d99b46c57e0854c2e2068b06940220e7
/showcaseviewlibrary/src/main/java/com/github/amlcurran/showcaseview/AnimatorAnimationFactory.java
48c3c9e32e3fa593e80f09c94a234627b59cf7c8
[]
no_license
NoBugException/MaterialDesign
66e0b4e8f83ee843ee232bdd1a130abb8b67a8fd
4fae2089d77dcc3b62922df07116c3af40117100
refs/heads/master
2021-09-12T01:58:53.883157
2018-04-13T12:54:45
2018-04-13T12:54:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,765
java
/* * Copyright 2014 Alex Curran * * 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.github.amlcurran.showcaseview; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.AnimatorSet; import android.animation.ObjectAnimator; import android.annotation.TargetApi; import android.graphics.Point; import android.os.Build.VERSION_CODES; import android.view.View; import android.view.animation.AccelerateDecelerateInterpolator; @TargetApi(VERSION_CODES.HONEYCOMB) class AnimatorAnimationFactory implements AnimationFactory { private static final String ALPHA = "alpha"; private static final float INVISIBLE = 0f; private static final float VISIBLE = 1f; private final AccelerateDecelerateInterpolator interpolator; public AnimatorAnimationFactory() { interpolator = new AccelerateDecelerateInterpolator(); } @Override public void fadeInView(View target, long duration, final AnimationStartListener listener) { ObjectAnimator oa = ObjectAnimator.ofFloat(target, ALPHA, INVISIBLE, VISIBLE); oa.setDuration(duration).addListener(new AnimatorListenerAdapter() { @Override public void onAnimationStart(Animator animator) { listener.onAnimationStart(); } }); oa.start(); } @Override public void fadeOutView(View target, long duration, final AnimationEndListener listener) { ObjectAnimator oa = ObjectAnimator.ofFloat(target, ALPHA, INVISIBLE); oa.setDuration(duration).addListener(new AnimatorListenerAdapter() { @Override public void onAnimationEnd(Animator animator) { listener.onAnimationEnd(); } }); oa.start(); } @Override public void animateTargetToPoint(ShowcaseView showcaseView, Point point) { AnimatorSet set = new AnimatorSet(); ObjectAnimator xAnimator = ObjectAnimator.ofInt(showcaseView, "showcaseX", point.x); ObjectAnimator yAnimator = ObjectAnimator.ofInt(showcaseView, "showcaseY", point.y); set.playTogether(xAnimator, yAnimator); set.setInterpolator(interpolator); set.start(); } }
0736403765e6960e230657a286ee62b7fa6742aa
59f04a9ae65ac1e0fc383db95e63cfcab9543546
/eb-admin/src/main/java/com/java/mapper/LoginMapper.java
0bea66231fd8a11f9b4bf9b875ba26e9cfa6d742
[ "Apache-2.0" ]
permissive
wyb01/test-mongodb
b4f121161a52ef8fcc5a445e2b8fbd20b593faad
83e480c6ff00db1bd535d8b09baeb32b8a074f36
refs/heads/master
2022-07-14T19:40:59.923398
2019-11-14T13:00:26
2019-11-14T13:00:26
221,676,901
0
0
Apache-2.0
2022-06-21T04:07:38
2019-11-14T11:02:07
HTML
UTF-8
Java
false
false
642
java
package com.java.mapper; import org.apache.ibatis.annotations.Select; import java.util.List; import java.util.Map; /** * description: * author:丁鹏 * date:15:59 */ public interface LoginMapper { /** * 登录 * @param username * @param pwd * @return */ @Select("SELECT COUNT(*) FROM admin_users WHERE username=#{arg0} AND pwd=#{arg1}") int login(String username,String pwd); /** * 根据用户名获取对应的权限 * @param username * @return */ List<Map<String,Object>> getAuthorityByUsername(Map<String,Object> paramMap); }
573adf3a98c4b7f5be52ce50d377ea637fcebe1e
01e1b1b60b55c3710f55155760f4bb7a27d0d301
/src/main/java/defpackage/nb.java
930d149308ae2d3ecfca02728aa6d69ef699b39d
[]
no_license
uttaravadina/devlotto-osrs-mobile
5dfc4e115ab92cb51ce8eae981252c85d522bb84
c03025b306df394a9470ede04c02d2217b0de4ee
refs/heads/master
2022-01-18T09:48:18.454862
2019-08-16T19:25:35
2019-08-16T19:25:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,581
java
package defpackage; /* renamed from: nb */ public class nb implements nl { public static final nb ad = new nb(14, 0); static final nb[] ae = new nb[32]; static final nb aj = new nb(27, 0); public static final nb al = new nb(18, -2); static final nb aq = new nb(15, 4); public static final nb ar = new nb(16, -2); public static final int cs = 74; public final int ai; static { int i = 0; nb[] ad = fu.ad((byte) 57); while (i < ad.length) { ae[ad[i].ai * -938974633] = ad[i]; i++; } } nb(int i, int i2) { try { this.ai = -1026315929 * i; } catch (RuntimeException e) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("nb.<init>("); stringBuilder.append(')'); throw mv.aq(e, stringBuilder.toString()); } } public static boolean ag(int i) { try { if (ko.aj * -557713751 == 2) { if (di.ap == null) { di.ap = ka.ad(ko.ai, ko.ae * 1134540175, ne.am * -775929309); if (di.ap == null) { return false; } } if (ko.au == null) { ko.au = new gq(en.ar, ko.aq); } if (ji.al.ar(di.ap, fg.ad, ko.au, 22050, -55762925)) { ji.al.al(1677326388); ji.al.ad(mo.ak * 223887887, (byte) 47); ji.al.as(di.ap, fx.ag, 1262545265); ko.aj = 0; di.ap = null; ko.au = null; ko.ai = null; return true; } } } catch (Exception e) { try { e.printStackTrace(); ji.al.ap(-640650544); ko.aj = 0; di.ap = null; ko.au = null; ko.ai = null; } catch (RuntimeException e2) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("nb.ag("); stringBuilder.append(')'); throw mv.aq(e2, stringBuilder.toString()); } } return false; } public static boolean am(int i, int i2) { return ((i >> 29) & 1) != 0; } static nb[] aq() { return new nb[]{aq, aj, ar, al, ad}; } static nb[] ar() { return new nb[]{aq, aj, ar, al, ad}; } }
[ "=" ]
=
0d939c0de4e2db97aea798ddd94c899f00cb885b
5f82aae041ab05a5e6c3d9ddd8319506191ab055
/Projects/Mockito/26/src/org/mockito/plugins/MockMaker.java
9a9d9008419907d71e1cec400c7c2137a88b0476
[ "BSD-3-Clause", "MIT", "Apache-2.0" ]
permissive
lingming/prapr_data
e9ddabdf971451d46f1ef2cdbee15ce342a6f9dc
be9ababc95df45fd66574c6af01122ed9df3db5d
refs/heads/master
2023-08-14T20:36:23.459190
2021-10-17T13:49:39
2021-10-17T13:49:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,575
java
/* * Copyright (c) 2007 Mockito contributors * This program is made available under the terms of the MIT License. */ package org.mockito.plugins; import org.mockito.Incubating; import org.mockito.invocation.MockHandler; import org.mockito.mock.MockCreationSettings; /** * The facility to create mocks. * * <p>By default, an internal cglib/asm/objenesis based implementation is used.</p> * * <p>{@code MockMaker} is an extension point that makes it possible to use custom dynamic proxies * and avoid using the default cglib/asm/objenesis implementation. * For example, the android users can use a MockMaker that can work with Dalvik virtual machine * and hence bring Mockito to android apps developers.</p> * * <h3>Using the extension point</h3> * * <p>Suppose you wrote an extension to create mocks with some <em>Awesome</em> library, in order to tell * Mockito to use it you need to put in your <strong>classpath</strong>: * <ol style="list-style-type: lower-alpha"> * <li>The implementation itself, for example <code>org.awesome.mockito.AwesomeMockMaker</code> that extends the <code>MockMaker</code>.</li> * <li>A file "<code>mockito-extensions/org.mockito.plugins.MockMaker</code>". The content of this file is * exactly a <strong>one</strong> line with the qualified name: <code>org.awesome.mockito.AwesomeMockMaker</code>.</li> * </ol></p> * * <p>Note that if several <code>mockito-extensions/org.mockito.plugins.MockMaker</code> files exists in the classpath * Mockito will only use the first returned by the standard {@link ClassLoader#getResource} mechanism. * * @see org.mockito.mock.MockCreationSettings * @see org.mockito.invocation.MockHandler * @since 1.9.5 */ @Incubating public interface MockMaker { /** * If you want to provide your own implementation of {@code MockMaker} this method should: * <ul> * <li>Create a proxy object that implements {@code settings.typeToMock} and potentially also {@code settings.extraInterfaces}.</li> * <li>You may use the information from {@code settings} to create/configure your proxy object.</li> * <li>Your proxy object should carry the {@code hander} with it. For example, if you generate byte code * to create the proxy you could generate an extra field to keep the {@code handler} with the generated object. * Your implementation of {@code MockMaker} is required to provide this instance of {@code handler} when * {@link #getHandler(Object)} is called. * </li> * </ul> * * @param settings - mock creation settings like type to mock, extra interfaces and so on. * @param handler See {@link org.mockito.invocation.MockHandler}. * <b>Do not</b> provide your own implementation at this time. Make sure your implementation of * {@link #getHandler(Object)} will return this instance. * @param <T> Type of the mock to return, actually the <code>settings.getTypeToMock</code>. * @return The mock instance. * @since 1.9.5 */ <T> T createMock( MockCreationSettings<T> settings, MockHandler handler ); /** * Returns the handler for the {@code mock}. <b>Do not</b> provide your own implementations at this time * because the work on the {@link MockHandler} api is not completed. * Use the instance provided to you by Mockito at {@link #createMock} or {@link #resetMock}. * * @param mock The mock instance. * @return may return null - it means that there is no handler attached to provided object. * This means the passed object is not really a Mockito mock. * @since 1.9.5 */ MockHandler getHandler(Object mock); /** * Replaces the existing handler on {@code mock} with {@code newHandler}. * * <p>The invocation handler actually store invocations to achieve * stubbing and verification. In order to reset the mock, we pass * a new instance of the invocation handler.</p> * * <p>Your implementation should make sure the {@code newHandler} is correctly associated to passed {@code mock}</p> * * @param mock The mock instance whose invocation handler is to be replaced. * @param newHandler The new invocation handler instance. * @param settings The mock settings - should you need to access some of the mock creation details. * @since 1.9.5 */ void resetMock( Object mock, MockHandler newHandler, MockCreationSettings settings ); }
3ebb083a310b9869eed8342d7f1cb90eb97f3f51
9b1ea885c04a5f7a1a41a027526debc12a3723ee
/weixin/src/main/java/com/star/project/meeting/service/SigninDateService.java
742a27212f63019ef7364733aa9f2d0eeaf8eee3
[]
no_license
AMikodo/weixin
2ed27173d3394d1fe0be8bb24b014bbf0bdd365a
08712893ea909caf334555f1960565a75ead3dce
refs/heads/master
2022-12-22T19:48:38.685573
2019-11-17T13:41:34
2019-11-17T13:41:34
222,252,352
0
0
null
2022-12-16T11:54:30
2019-11-17T13:29:27
JavaScript
UTF-8
Java
false
false
258
java
package com.star.project.meeting.service; import java.util.List; import com.star.project.meeting.bean.SigninDate; public interface SigninDateService { int insert(SigninDate signinDate); List<SigninDate> selectListByUid(Integer uid,String time); }
648fe5a61eff47da5ce40c8ddd8e9a092a00317e
38ea7273dacd416c3a3ebb3cc999eced6d3f8fe4
/src/main/java/com/alexside/dto/SensorDTO.java
e9ac3a353ae4e3c9026eecb6610b1ec58fdad020
[]
no_license
affect205/sensor_demo
ac5d089680585f35c38db8c7295d4c428e482dd7
18e2e2a9466c879842e41baa4441a8d5f3f681b3
refs/heads/master
2020-03-11T20:10:54.359307
2018-04-27T21:52:00
2018-04-27T21:52:00
130,229,934
0
0
null
null
null
null
UTF-8
Java
false
false
620
java
package com.alexside.dto; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.util.ArrayList; import java.util.List; @Data @AllArgsConstructor @NoArgsConstructor @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonIgnoreProperties(ignoreUnknown = true) public class SensorDTO { private Long id; private String name; private Double min; private Double max; private Boolean enabled; private List<EventDTO> events = new ArrayList<>(); }
1053f8e7db6300d7705444c11e79dc895e66665c
e41a2411f84f79340ae0b8ac968918ad5e637f50
/chap10/src/Matango.java
8a6e56727b0be1c92290723303b32e37fc046c37
[]
no_license
yamaguchi122702/workspace
1cb80d74736ce97251aa7a380dada5c9dc1f00df
09d71a0cd8a5fc046ee2f0c7fec90817f13d0cd9
refs/heads/main
2023-03-22T18:11:43.916205
2021-03-16T06:31:10
2021-03-16T06:31:10
348,218,367
0
0
null
null
null
null
UTF-8
Java
false
false
198
java
public class Matango { int hp; final int LEVEL = 10; char suffix; public void run() { System.out.println("お化けキノコ" + this.suffix + "は逃げ出した!"); } }
247a95aa970a76055f75c50771877e8131887e5c
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/alibaba--druid/76c441949f5d133057c86c926330851497dc1254/after/SQLTransformUtils.java
8699fcbe99b8fc57219988487c29ef54097def3a
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
23,345
java
/* * Copyright 1999-2017 Alibaba Group Holding Ltd. * * 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.alibaba.druid.sql; import com.alibaba.druid.sql.ast.SQLDataType; import com.alibaba.druid.sql.ast.SQLDataTypeImpl; import com.alibaba.druid.sql.ast.SQLExpr; import com.alibaba.druid.sql.ast.expr.*; import com.alibaba.druid.sql.ast.statement.SQLCharacterDataType; import java.util.List; public class SQLTransformUtils { public static SQLExpr transformDecode(SQLMethodInvokeExpr x) { if (x == null) { return null; } if (!"decode".equalsIgnoreCase(x.getMethodName())) { throw new IllegalArgumentException(x.getMethodName()); } List<SQLExpr> parameters = x.getParameters(); SQLCaseExpr caseExpr = new SQLCaseExpr(); caseExpr.setParent(x.getParent()); caseExpr.setValueExpr(parameters.get(0)); if (parameters.size() == 4) { SQLExpr param1 = parameters.get(1); x.setMethodName("if"); SQLBinaryOpExpr condition; if (param1 instanceof SQLNullExpr) { condition = new SQLBinaryOpExpr(parameters.get(0), SQLBinaryOperator.Is, param1); } else { condition = new SQLBinaryOpExpr(parameters.get(0), SQLBinaryOperator.Equality, param1); } condition.setParent(x); parameters.set(0, condition); parameters.set(1, parameters.get(2)); parameters.set(2, parameters.get(3)); parameters.remove(3); return x; } for (int i = 1; i + 1 < parameters.size(); i += 2) { SQLCaseExpr.Item item = new SQLCaseExpr.Item(); SQLExpr conditionExpr = parameters.get(i); item.setConditionExpr(conditionExpr); SQLExpr valueExpr = parameters.get(i + 1); if (valueExpr instanceof SQLMethodInvokeExpr) { SQLMethodInvokeExpr methodInvokeExpr = (SQLMethodInvokeExpr) valueExpr; if ("decode".equalsIgnoreCase(methodInvokeExpr.getMethodName())) { valueExpr = transformDecode(methodInvokeExpr); } } item.setValueExpr(valueExpr); caseExpr.addItem(item); } if (parameters.size() % 2 == 0) { SQLExpr defaultExpr = parameters.get(parameters.size() - 1); if (defaultExpr instanceof SQLMethodInvokeExpr) { SQLMethodInvokeExpr methodInvokeExpr = (SQLMethodInvokeExpr) defaultExpr; if ("decode".equalsIgnoreCase(methodInvokeExpr.getMethodName())) { defaultExpr = transformDecode(methodInvokeExpr); } } caseExpr.setElseExpr(defaultExpr); } caseExpr.setParent(x.getParent()); return caseExpr; } public static SQLDataType transformOracleToMySql(SQLDataType x) { final String name = x.getName(); if (name == null) { return x; } List<SQLExpr> argumentns = x.getArguments(); String name_lower = name.toLowerCase(); SQLDataType dataType; if ("urowid".equalsIgnoreCase(name_lower)) { int len = 4000; if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLIntegerExpr) { len = ((SQLIntegerExpr) arg0).getNumber().intValue(); } } dataType = new SQLDataTypeImpl("varchar", len); } else if ("rowid".equals(name_lower)) { dataType = new SQLDataTypeImpl("char", 10); } else if ("boolean".equals(name_lower)) { dataType = new SQLDataTypeImpl("tinyint"); } else if ("integer".equals(name_lower)) { dataType = new SQLDataTypeImpl("int"); } else if ("float".equals(name_lower) || "binary_float".equals(name_lower)) { dataType = new SQLDataTypeImpl("float"); } else if ("real".equals(name_lower) || "double precision".equals(name_lower) || "binary_double".equals(name_lower)) { dataType = new SQLDataTypeImpl("double"); } else if ("number".equals(name_lower)) { if (argumentns.size() == 0) { dataType = new SQLDataTypeImpl("decimal", 38); } else { SQLExpr arg0 = argumentns.get(0); int precision, scale = 0; if (arg0 instanceof SQLAllColumnExpr) { precision = 9; scale = 1; } else { precision = ((SQLIntegerExpr) arg0).getNumber().intValue(); } if (argumentns.size() > 1) { scale = ((SQLIntegerExpr) argumentns.get(1)).getNumber().intValue(); } if (scale > precision) { if (arg0 instanceof SQLAllColumnExpr) { precision = 19; if (scale > precision) { precision = scale; } } else { precision = scale; } } if (scale == 0) { if (precision < 3) { dataType = new SQLDataTypeImpl("tinyint"); } else if (precision < 5) { dataType = new SQLDataTypeImpl("smallint"); } else if (precision < 9) { dataType = new SQLDataTypeImpl("int"); } else if (precision < 19) { dataType = new SQLDataTypeImpl("bigint"); } else { dataType = new SQLDataTypeImpl("decimal", precision); } } else { dataType = new SQLDataTypeImpl("decimal", precision, scale); } } } else if ("dec".equals(name_lower) || "decimal".equals(name_lower)) { dataType = x.clone(); dataType.setName("decimal"); int precision = 0; if (argumentns.size() > 0) { precision = ((SQLIntegerExpr) argumentns.get(0)).getNumber().intValue(); } int scale = 0; if (argumentns.size() > 1) { scale = ((SQLIntegerExpr) argumentns.get(1)).getNumber().intValue(); if (precision < scale) { ((SQLIntegerExpr) dataType.getArguments().get(1)).setNumber(precision); } } // if (precision == 38 && scale == 0 && x.getParent() instanceof SQLCastExpr) { // dataType.getArguments().clear(); // dataType.setName("int"); // } ///////////////////////////////// } else if ("raw".equals(name_lower)) { int len; if (argumentns.size() == 0) { len = -1; } else if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } if (len == -1) { dataType = new SQLDataTypeImpl("binary"); } else if (len <= 255) { dataType = new SQLDataTypeImpl("binary", len); } else { dataType = new SQLDataTypeImpl("varbinary", len); } } else if ("char".equals(name_lower) || "character".equals(name_lower)) { if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); int len; if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } if (len <= 255) { dataType = new SQLCharacterDataType("char", len); } else { dataType = new SQLCharacterDataType("varchar", len); } } else if (argumentns.size() == 0) { dataType = new SQLCharacterDataType("char"); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } else if ("nchar".equals(name_lower)) { if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); int len; if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } if (len <= 255) { dataType = new SQLCharacterDataType("nchar", len); } else { dataType = new SQLCharacterDataType("nvarchar", len); } } else if (argumentns.size() == 0) { dataType = new SQLCharacterDataType("nchar"); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } else if ("varchar2".equals(name_lower)) { if (argumentns.size() > 0) { int len; SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } dataType = new SQLCharacterDataType("varchar", len); } else { dataType = new SQLCharacterDataType("varchar"); } } else if ("nvarchar2".equals(name_lower)) { if (argumentns.size() > 0) { int len; SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } dataType = new SQLCharacterDataType("nvarchar", len); } else { dataType = new SQLCharacterDataType("nvarchar"); } } else if ("bfile".equals(name_lower)) { dataType = new SQLCharacterDataType("varchar", 255); } else if ("date".equals(name_lower) || "timestamp".equals(name_lower)) { int len = -1; if (argumentns.size() > 0) { SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } if (len >= 0) { if (len > 6) { len = 6; } dataType = new SQLDataTypeImpl("datetime", len); } else { dataType = new SQLDataTypeImpl("datetime"); } } else if ("blob".equals(name_lower) || "long raw".equals(name_lower)) { argumentns.clear(); dataType = new SQLDataTypeImpl("LONGBLOB"); } else if ("clob".equals(name_lower) || "nclob".equals(name_lower) || "long".equals(name_lower) || "xmltype".equals(name_lower)) { argumentns.clear(); dataType = new SQLCharacterDataType("LONGTEXT"); } else { dataType = x; } if (dataType != x) { dataType.setParent(x.getParent()); } return dataType; } public static SQLDataType transformOracleToAliyunAds(SQLDataType x) { final String dataTypeName = x.getName().toLowerCase(); SQLDataType dataType; if (dataTypeName.equals("varchar2") || dataTypeName.equals("varchar") || dataTypeName.equals("char") || dataTypeName.equals("nchar") || dataTypeName.equals("nvarchar") || dataTypeName.equals("nvarchar2") || dataTypeName.equals("clob") || dataTypeName.equals("nclob") || dataTypeName.equals("blob") || dataTypeName.equals("long") || dataTypeName.equals("long raw") || dataTypeName.equals("raw") ) { dataType = new SQLCharacterDataType("varchar"); } else if (dataTypeName.equals("number") || dataTypeName.equals("decimal") || dataTypeName.equals("dec") || dataTypeName.equals("numeric")) { int scale = 0; if (x.getArguments().size() > 1) { scale = ((SQLIntegerExpr) x.getArguments().get(1)).getNumber().intValue(); } if (scale == 0) { dataType = new SQLDataTypeImpl("bigint"); } else { dataType = new SQLDataTypeImpl("double"); } } else if (dataTypeName.equals("date") || dataTypeName.equals("datetime") || dataTypeName.equals("timestamp")) { dataType = new SQLDataTypeImpl("timestamp"); } else if (dataTypeName.equals("float") || dataTypeName.equals("binary_float")) { dataType = new SQLDataTypeImpl("float"); } else if (dataTypeName.equals("double") || dataTypeName.equals("binary_double")) { dataType = new SQLDataTypeImpl("double"); } else { dataType = x; } if (dataType != x) { dataType.setParent(x.getParent()); } return dataType; } public static SQLDataType transformOracleToPostgresql(SQLDataType x) { final String name = x.getName(); if (name == null) { return x; } List<SQLExpr> argumentns = x.getArguments(); String name_lower = name.toLowerCase(); SQLDataType dataType; if ("urowid".equalsIgnoreCase(name_lower)) { int len = 4000; if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLIntegerExpr) { len = ((SQLIntegerExpr) arg0).getNumber().intValue(); } } dataType = new SQLDataTypeImpl("varchar", len); } else if ("rowid".equals(name_lower)) { dataType = new SQLDataTypeImpl("char", 10); } else if ("boolean".equals(name_lower)) { dataType = new SQLDataTypeImpl("tinyint"); } else if ("integer".equals(name_lower) || "int".equals(name_lower)) { dataType = new SQLDataTypeImpl("decimal", 38); } else if ("binary_float".equals(name_lower)) { dataType = new SQLDataTypeImpl("real"); } else if ("binary_double".equals(name_lower) || "float".equals(name_lower) || "real".equals(name_lower)) { dataType = new SQLDataTypeImpl("double precision"); } else if ("number".equals(name_lower)) { if (argumentns.size() == 0) { dataType = new SQLDataTypeImpl("decimal", 38); } else { SQLExpr arg0 = argumentns.get(0); int precision, scale = 0; if (arg0 instanceof SQLAllColumnExpr) { precision = 9; scale = 1; } else { precision = ((SQLIntegerExpr) arg0).getNumber().intValue(); } if (argumentns.size() > 1) { scale = ((SQLIntegerExpr) argumentns.get(1)).getNumber().intValue(); } if (scale > precision) { if (arg0 instanceof SQLAllColumnExpr) { precision = 19; if (scale > precision) { precision = scale; } } else { precision = scale; } } if (scale == 0) { if (precision < 3) { dataType = new SQLDataTypeImpl("tinyint"); } else if (precision < 5) { dataType = new SQLDataTypeImpl("smallint"); } else if (precision < 9) { dataType = new SQLDataTypeImpl("int"); } else if (precision < 19) { dataType = new SQLDataTypeImpl("bigint"); } else { dataType = new SQLDataTypeImpl("decimal", precision); } } else { dataType = new SQLDataTypeImpl("decimal", precision, scale); } } } else if ("dec".equals(name_lower) || "decimal".equals(name_lower)) { dataType = x.clone(); dataType.setName("decimal"); int precision = 0; if (argumentns.size() > 0) { precision = ((SQLIntegerExpr) argumentns.get(0)).getNumber().intValue(); } int scale = 0; if (argumentns.size() > 1) { scale = ((SQLIntegerExpr) argumentns.get(1)).getNumber().intValue(); if (precision < scale) { ((SQLIntegerExpr) dataType.getArguments().get(1)).setNumber(precision); } } } else if ("char".equals(name_lower) || "character".equals(name_lower)) { if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); int len; if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } if (len <= 255) { dataType = new SQLCharacterDataType("char", len); } else { dataType = new SQLCharacterDataType("varchar", len); } } else if (argumentns.size() == 0) { dataType = new SQLCharacterDataType("char"); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } else if ("nchar".equals(name_lower)) { if (argumentns.size() == 1) { SQLExpr arg0 = argumentns.get(0); int len; if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } if (len <= 255) { dataType = new SQLCharacterDataType("char", len); } else { dataType = new SQLCharacterDataType("varchar", len); } } else if (argumentns.size() == 0) { dataType = new SQLCharacterDataType("char"); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } else if ("varchar2".equals(name_lower)) { if (argumentns.size() > 0) { int len; SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } dataType = new SQLCharacterDataType("varchar", len); } else { dataType = new SQLCharacterDataType("varchar"); } } else if ("nvarchar2".equals(name_lower) || "nchar varying".equals(name_lower)) { if (argumentns.size() > 0) { int len; SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } dataType = new SQLCharacterDataType("varchar", len); } else { dataType = new SQLCharacterDataType("varchar"); } } else if ("bfile".equals(name_lower)) { dataType = new SQLCharacterDataType("varchar", 255); } else if ("date".equals(name_lower) || "timestamp".equals(name_lower)) { int len = -1; if (argumentns.size() > 0) { SQLExpr arg0 = argumentns.get(0); if (arg0 instanceof SQLNumericLiteralExpr) { len = ((SQLNumericLiteralExpr) arg0).getNumber().intValue(); } else { throw new UnsupportedOperationException(SQLUtils.toOracleString(x)); } } dataType = new SQLDataTypeImpl("timestamp", len); } else if ("blob".equals(name_lower) || "long raw".equals(name_lower) || "raw".equals(name_lower)) { argumentns.clear(); dataType = new SQLDataTypeImpl("bytea"); } else if ("clob".equals(name_lower) || "nclob".equals(name_lower) || "long".equals(name_lower)) { argumentns.clear(); dataType = new SQLCharacterDataType("TEXT"); } else if ("xmltype".equals(name_lower)) { dataType = new SQLDataTypeImpl("xml"); } else { dataType = x; } if (dataType != x) { dataType.setParent(x.getParent()); } return dataType; } }
79232c6f0eed91fe4df404d10d22db745ef51dc8
8ced32b21f1be9511c256cb8b589d7976b4b98d6
/alanmall-service/order-service/order-provider/src/main/java/com/itcrazy/alanmall/order/handler/HandlerType/ValidateHandler.java
d7c5540da9fb2a15b1771240258aa937a31b11c9
[]
no_license
Yangliang266/Alanmall
e5d1e57441790a481ae5aa75aa9d091909440281
38c2bde86dab6fd0277c87f99bc860bfc0fbdc0a
refs/heads/master
2023-06-13T05:01:25.747444
2021-07-10T12:18:58
2021-07-10T12:18:58
293,702,057
1
0
null
null
null
null
UTF-8
Java
false
false
1,447
java
package com.itcrazy.alanmall.order.handler.HandlerType; import com.itcrazy.alanmall.common.exception.BizException; import com.itcrazy.alanmall.order.constant.OrderRetCode; import com.itcrazy.alanmall.order.context.CreateOrderContext; import com.itcrazy.alanmall.order.context.TransHandlerContext; import com.itcrazy.alanmall.user.dto.QueryMemberRequest; import com.itcrazy.alanmall.user.dto.QueryMemberResponse; import com.itcrazy.alanmall.user.manager.IMemberService; import org.apache.dubbo.config.annotation.DubboReference; import org.springframework.stereotype.Component; @Component public class ValidateHandler extends AbstracTransHandler { @DubboReference(timeout = 3000) IMemberService iMemberService; @Override public boolean isAysc() { return false; } @Override public boolean doHandler(TransHandlerContext context) { CreateOrderContext createOrderContext=(CreateOrderContext)context; QueryMemberRequest queryMemberRequest =new QueryMemberRequest(); queryMemberRequest.setUserId(createOrderContext.getUserId()); QueryMemberResponse response=iMemberService.queryMemberById(queryMemberRequest); if(OrderRetCode.SUCCESS.getCode().equals(response.getCode())){ createOrderContext.setBuyerNickName(response.getUsername()); }else{ throw new BizException(response.getCode(),response.getMsg()); } return true; } }
82136d448ce1bad87556a5532f9a4ffedbf25969
70460f827fe76d0dc2d73315e2f679d037b7aaee
/src/main/java/io/pudge/mysample/service/dto/JobDTO.java
4603451496a0d45a0de6e9de16c8f9d1cac50763
[]
no_license
Pudge-XIONG/MySample
f75983e08b662a082ebf59246f4fd3d84fbc63aa
b9e5390b4ea7a4e0c675e3fcc4f5c52d9c5a3bdc
refs/heads/master
2021-01-01T19:22:30.129193
2017-07-27T19:58:19
2017-07-27T19:58:19
98,575,032
0
0
null
null
null
null
UTF-8
Java
false
false
2,080
java
package io.pudge.mysample.service.dto; import java.io.Serializable; import java.util.HashSet; import java.util.Set; import java.util.Objects; /** * A DTO for the Job entity. */ public class JobDTO implements Serializable { private Long id; private String jobTitle; private Long minSalary; private Long maxSalary; private Long employeeId; private Set<TaskDTO> tasks = new HashSet<>(); public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getJobTitle() { return jobTitle; } public void setJobTitle(String jobTitle) { this.jobTitle = jobTitle; } public Long getMinSalary() { return minSalary; } public void setMinSalary(Long minSalary) { this.minSalary = minSalary; } public Long getMaxSalary() { return maxSalary; } public void setMaxSalary(Long maxSalary) { this.maxSalary = maxSalary; } public Long getEmployeeId() { return employeeId; } public void setEmployeeId(Long employeeId) { this.employeeId = employeeId; } public Set<TaskDTO> getTasks() { return tasks; } public void setTasks(Set<TaskDTO> tasks) { this.tasks = tasks; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } JobDTO jobDTO = (JobDTO) o; if(jobDTO.getId() == null || getId() == null) { return false; } return Objects.equals(getId(), jobDTO.getId()); } @Override public int hashCode() { return Objects.hashCode(getId()); } @Override public String toString() { return "JobDTO{" + "id=" + getId() + ", jobTitle='" + getJobTitle() + "'" + ", minSalary='" + getMinSalary() + "'" + ", maxSalary='" + getMaxSalary() + "'" + "}"; } }
ec26cf0354b2cf9dcfab038a843113a7e81be64c
a7af04104e940783a574a16a3f112f14c43bae59
/src/main/java/com/sjtu/alumnimanagement/dao/AssociatedPersonDao.java
52f49b07999b24573cd36ba745f4794a473aec3c
[]
no_license
DuWenLi-mumu/AlumniManagement
c5bd4d19eceb278ff8f8e69be255872d5b351c6a
6ed9c138847de59f2ab3b7845332c2fec2f065e1
refs/heads/master
2023-07-15T10:07:15.841960
2021-08-28T08:32:58
2021-08-28T08:32:58
391,564,229
0
0
null
2021-08-05T05:26:15
2021-08-01T07:58:15
Java
UTF-8
Java
false
false
290
java
package com.sjtu.alumnimanagement.dao; import com.sjtu.alumnimanagement.entity.AssociatedPerson; import org.springframework.data.jpa.repository.JpaRepository; public interface AssociatedPersonDao extends JpaRepository<AssociatedPerson, Integer> { AssociatedPerson findById(int id); }
9e7b67b60e574a5e72611a7bd877e150e202ae20
a5f16cbc228caf5c4e62868381316694742dcab9
/src/com/lgcns/tct/pad/test/Pad.java
b54beda8bbe3926158a5b54948d10efc3ed9f049
[]
no_license
poooiuy/sung
74bd7b5bd2b313c958ec6bb5d04955b91f695e67
2b45bb33912b157ace985c96f970d99d596a1610
refs/heads/master
2022-06-24T14:04:45.752017
2022-06-12T10:43:01
2022-06-12T10:43:01
187,414,560
0
0
null
null
null
null
UHC
Java
false
false
2,135
java
package com.lgcns.tct.pad.test; public class Pad { /** * 이동문자열을 추출하는 기능 * * @param inputData String 입력데이터(문자열) * @return String 이동문자열 */ public String getRotationStr(String inputData) { String rotationStr = ""; //////////////////////// 여기부터 구현 (1) ----------------> String[] inputArr = inputData.split(""); for(int i=0; i<inputArr.length; i++) { if( i%2 == 0 && Integer.parseInt(inputArr[i]) != 0 ) { String text = inputArr[i+1]; if( text.equals("U") || text.equals("D") || text.equals("L") || text.equals("R") ) { rotationStr += inputArr[i] + inputArr[i+1]; } } } ///////////////////////////// <-------------- 여기까지 구현 (1) return rotationStr; } /** * 숫자패드를 이동시키는 기능 * * @param inputNumberPad int[][] 입력데이터(숫자패드) * @param rotationStr String 이동문자열 * @return int[][] 이동된 숫자패드 */ public int[][] getNumberPad(int[][] inputNumberPad, String rotationStr) { int[][] numberPad = null; //////////////////////// 여기부터 구현 (2) ----------------> numberPad = inputNumberPad; String[] rStr = new String[rotationStr.length()/2]; for(int i=0; i<rStr.length*2; i=i+2) { rStr[i/2] = rotationStr.substring(i, i+2); } for(String str : rStr) { numberPad = getMethod(numberPad, str); } ///////////////////////////// <-------------- 여기까지 구현 (2) return numberPad; } public int[][] getMethod(int[][] inputNumberPad, String rotationStr){ int[][] pad = null; System.out.println(inputNumberPad.length); int count = Integer.parseInt(rotationStr.charAt(0)+""); String cmd = rotationStr.charAt(1)+""; for(int i=0; i<count; i++) { int[][] tmp = null; switch(cmd) { case "U" : break; case "D" : break; case "L" : break; case "R" : break; } pad = tmp; } return pad; } }
dbf3624a9db36347bf1eef5542f3c70f18e92294
bf7b4c21300a8ccebb380e0e0a031982466ccd83
/middlewareConcepts2014-master/Assignment3/lib/jacorb-3.4/src/generated/org/omg/Messaging/RoutingPolicyLocalTie.java
08b50da03b82477ecc01afb5c329ab0d2aa0b6eb
[]
no_license
Puriakshat/Tuberlin
3fe36b970aabad30ed95e8a07c2f875e4912a3db
28dcf7f7edfe7320c740c306b1c0593a6c1b3115
refs/heads/master
2021-01-19T07:30:16.857479
2014-11-06T18:49:16
2014-11-06T18:49:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
923
java
package org.omg.Messaging; /** * Generated from IDL interface "RoutingPolicy". * * @author JacORB IDL compiler V @project.version@ * @version generated at 27-May-2014 20:14:30 */ public class RoutingPolicyLocalTie extends _RoutingPolicyLocalBase { /** Serial version UID. */ private static final long serialVersionUID = 1L; private RoutingPolicyOperations _delegate; public RoutingPolicyLocalTie(RoutingPolicyOperations delegate) { _delegate = delegate; } public RoutingPolicyOperations _delegate() { return _delegate; } public void _delegate(RoutingPolicyOperations delegate) { _delegate = delegate; } public org.omg.Messaging.RoutingTypeRange routing_range() { return _delegate.routing_range(); } public int policy_type() { return _delegate.policy_type(); } public org.omg.CORBA.Policy copy() { return _delegate.copy(); } public void destroy() { _delegate.destroy(); } }
fa9005ec5b7aa126e5e4c324379e944b8a3dab17
b030eca137118c54094b5e0e338dd734ad5d92d5
/src/main/java/me/_Jonathan_xD/UtilityPlugin/ConfigDefaults.java
8bf03df9f475a8df2d08ede69c42a94494997029
[]
no_license
JonathanxD/UtilityPlugin
e647fdcd79df46ff6ee5fbe19e9aa68c232d2b9d
fb5a44f5f86929da1e86d4dfbf53c8dae8d37ed7
refs/heads/master
2020-05-30T10:19:14.612472
2014-05-04T02:54:25
2014-05-04T02:54:25
15,656,716
0
1
null
null
null
null
UTF-8
Java
false
false
1,614
java
package me._Jonathan_xD.UtilityPlugin; import java.util.ArrayList; import org.bukkit.ChatColor; public enum ConfigDefaults{ Debug("debugblocks", "false"), RemoveBannedOnClick("removebannedblockonclick", "false"), RemoveIfCancelled("removebannedifcancelled", "false"), CheckUpdates("checkupdates", true), Ignore("bannedwordsignore", 2), JoinMessage("msg.joinmsg", "disable"), ForKicked("msg.forkickedmsg", "![kicker] Has kicked you, reason: ![kickreason]."), BannedBlocks("bannedblocks", new ArrayList<String>()), BannedWords("bannedwords", new ArrayList<String>()), BannedCmds("bannedcmds", new ArrayList<String>()), ErrorMsg("msg.error", ChatColor.YELLOW+"[UtilityPlugin] "+ChatColor.RED+"Error, verify command syntax."), BannedBlocksMsg("msg.bannedblocks", ChatColor.YELLOW+"[UtilityPlugin] "+ChatColor.RED+"<material> is banned."), BannedWordMsg("msg.bannedword", ChatColor.YELLOW+"[UtilityPlugin] "+ChatColor.RED+"<message> will be not showed because contains a banned word."), BannedCmdMsg("msg.bannedcmd", ChatColor.YELLOW+"[UtilityPlugin] "+ChatColor.RED+"<command> is banned."), SpammerMessage("msg.spammer", ChatColor.YELLOW+"[UtilityPlugin] "+ChatColor.RED+"PLEASE DON'T SPAM."), DetectSpammers("opt.detectspammers", true), CharRepeatMax("opt.maxcharrepeat", 3) ; private final String key; private final Object def; private ConfigDefaults(String value, Object def) { this.key = value; this.def = def; } public String getKey() { return this.key; } public Object getDef() { return this.def; } @Override public String toString() { return this.key+"="+this.def; } }
0042d107597205eddfa8a931820c38a807b341c1
e73b7c0b7305d83a3efade341c43884acfaa7b32
/src/main/java/com/example/kubermarket/controller/PasswordWrongException.java
05c1873fd4900fd029feee6e86dab2b575e21d3a
[]
no_license
ahnseongeun/kubermarket-single-module
9eb00e5c9ce37bc74694612c08266acc321e4afb
f3d2eb87ff6231e584ba945409c4a188f40c35fa
refs/heads/master
2023-01-28T15:44:06.080349
2020-12-09T10:21:14
2020-12-09T10:21:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
189
java
package com.example.kubermarket.controller; public class PasswordWrongException extends RuntimeException { public PasswordWrongException(){ super("password is wrong"); } }
8315def654f0c962ba3295b2fddb67759981b39f
461acdfede26ba5e0c53e47c54f36155c3b34cee
/Java_21_FileWriter/src/com/biz/files/FileWriterEx_03.java
ab615c0d7789845e36130c3f702e62304fcc1ee8
[]
no_license
qussoa/20191002
dc5e13a0a7e35079aeb4a028c919cd8c310b5caf
2843d602c09a49ff0980af79743fdf49b1295def
refs/heads/master
2020-08-04T21:17:58.279045
2019-11-04T07:42:55
2019-11-04T07:42:55
212,282,154
0
0
null
null
null
null
UTF-8
Java
false
false
532
java
package com.biz.files; import java.io.FileWriter; import java.io.IOException; public class FileWriterEx_03 { public static void main(String[] args) { String fileName = "src/com/biz/files/data2.txt"; FileWriter fileWriter; try { fileWriter = new FileWriter(fileName,false); fileWriter.write("우리나라\n"); fileWriter.write("대한민국\n"); fileWriter.write("Republic of Korea\n"); fileWriter.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
8fa442f167f207ce668f131af48d70ceef7a19c5
7a90d3521eb78b275d25d0e0c90346211141e214
/ArrayList.java
d729d4ae105a8cd1d810659b71c9f750da9ee105
[]
no_license
Belverus/Data-Structures-Implementation
c1297c43753de7caa61ee6b14f21e48fb23d1e1c
26374ceb272b498c0927e92c80c015d9420d93f5
refs/heads/master
2020-06-29T23:37:29.088710
2019-09-08T09:38:19
2019-09-08T09:38:19
200,657,538
0
0
null
null
null
null
UTF-8
Java
false
false
4,477
java
/** ArrayList class extends List class and uses its template methods. */ import java.util.Arrays; public class ArrayList<V> extends List { //Instance variables ----------------------------------------------------------------------------------------- /* ArrayList class has three instance variables. * "Size" acts like both a checkpoint and index. It compares the empty locations with the array size. * DEFAULT_CAPACITY is the array initialization capacity and 10. */ protected int size = 0; //we used this as top in our course slides. protected final int DEFAULT_CAPACITY = 10; protected Object[] arraylist; //Constructors ----------------------------------------------------------------------------------------- /* ArrayList has only a default constructor, which initializes the elements array with default capacity 10. */ protected ArrayList() { this.arraylist = new Object[DEFAULT_CAPACITY]; } //Accessors and mutators -------------------------------------------------------------------------------------- /* "add" method adds a new element to the ArrayList. * checks if the ArrayList is full. If it is it goes to function increaseCapacity() to increase capacity. * Size is used as the 0 index to store the arraylist values. */ @Override protected void add(Object value){ if(size == arraylist.length) { System.out.println("Array capacity is full. Increasing capacity..."); increaseCapacity(); } arraylist[size++] = value; } /* "insertAt" method inserts an element at the given index. * shifts the elements after given index by one. * doubles the size if the current capacity is full. */ public void insertAt(int index, V newVal) { if(index < 0 || index > size) { throw new ArrayIndexOutOfBoundsException("Given index is out of bounds!"); } if(size == arraylist.length) { System.out.println("Array capacity is full. Increasing capacity..."); increaseCapacity(); } for(int i = size-1; i >= index; i--) { arraylist[i+1] = arraylist[i]; } arraylist[index] = newVal; size++; } /*"increaseCapacity" doubles the current default size of the arraylist and copies the contents of it to a new double sized array. * User should not modify increaseCapacity method, that's why I made it private. */ private void increaseCapacity() { int newSize = arraylist.length * 2; arraylist = Arrays.copyOf(arraylist, newSize); } /* "remove" method removes the last element of the array and decreases the size by 1. */ protected void remove() { if(size < 1) { throw new ArrayIndexOutOfBoundsException("ArrayList is already empty!"); } else { System.out.println("Removing element " + arraylist[size-1] + " at index " + (size-1)); arraylist[size-1] = null; size--; } } /* "removeAt" removes the element at given index. * elements after removing the target are copied back starting from the empty position. * last element is equaled to null after removal and array size is decreased by one. */ protected void removeAt(int index) { if(index < 0 || index > size) { throw new ArrayIndexOutOfBoundsException("Given index is out of bounds!"); } if(size < 1) { throw new ArrayIndexOutOfBoundsException("ArrayList is already empty!"); } else { System.out.println("Removing element " + arraylist[index] + " at index " + index); arraylist[index] = null; for(int i = index; i<size-1; i++){ arraylist[i] = arraylist[i+1]; } arraylist[size-1] = null; size--; } } /*As size shows the filled elements of the arraylist, "print()" function displays the elements of arraylist. */ @Override protected void print() { for(int i = 0; i<size; i++) { System.out.print(arraylist[i] + " "); } System.out.println(); } /*After overflow of the default capacity, you can check the new capacity of the arraylist. */ protected void getCapAndSize() { System.out.println("Current capacity is: " + arraylist.length + ", current size is: " + size) ; } /*End of ArrayList class.*/ }
b1d04de73fa2e7affa5eafc2edee7539819a11fe
215b7f0b177047b2af0423c06cd5aae11518567b
/RESTChat/Server/src/Responses/errors/BadRequest.java
9c74dd1ee729d188ae5a6d4a7d17582595b7219d
[]
no_license
AyyaGalieva/NSU-networks-telecommunications
7fca301d994d230660d6f5cb797b0941379710a0
e743cc9a95fc325fd8b11cc318c55d2f4c92cead
refs/heads/master
2020-03-28T13:45:20.294302
2019-01-15T17:31:29
2019-01-15T17:31:29
148,425,679
0
0
null
null
null
null
UTF-8
Java
false
false
202
java
package Responses.errors; import Responses.HttpCode; import Responses.Response; public class BadRequest extends Response { public BadRequest() { setHttpCode(HttpCode.BAD_REQUEST); } }
c7892fbb22143457cb50a2bfcbcb0db653474e07
068a369d7c9bed0565c5db347b4fdd792d4e1c62
/src/main/java/com/eclectics/questiontwo/controller/MessageController.java
b5537016144e61d0456c74c85909c66d83f83774
[]
no_license
royWati/rabbitmq-consumer
ac663081397e80cdda217da59d840e817d885a89
060ece36d4d7c3c8ecc622af64a8a3d855bf28bf
refs/heads/master
2020-05-23T09:04:09.372106
2019-05-14T21:14:40
2019-05-14T21:14:40
186,701,395
0
0
null
null
null
null
UTF-8
Java
false
false
724
java
package com.eclectics.questiontwo.controller; import com.eclectics.questiontwo.consumers.MessageConsumer; import com.eclectics.questiontwo.entities.Messages; import com.eclectics.questiontwo.wrapper.MessageResponse; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; @RestController @RequestMapping("/stored-messages") public class MessageController { @Autowired private MessageConsumer service; @GetMapping public MessageResponse findAll(){ return service.findAll(); } }
a994b43b2c73f967bb537d069a2a908609e59ef5
7b4666b7a423e57a5db6f69a0bb89ff12a2af249
/src/main/java/com/leetcode/editor/en/SortList.java
5b9dd41a9926e4faf23b8b4b6d54344829f44d14
[]
no_license
TIM-Siyuan/leetcode-question
c18c3df983004fbf6808ed8fe28c5eb04a0d141b
7d6934cafdf2cbf73dea7d2ade54de56e3db9cc1
refs/heads/master
2021-04-17T02:27:14.736320
2020-09-06T18:32:04
2020-09-06T18:32:04
249,404,081
0
0
null
null
null
null
UTF-8
Java
false
false
4,430
java
//Sort a linked list in O(n log n) time using constant space complexity. // // Example 1: // // //Input: 4->2->1->3 //Output: 1->2->3->4 // // // Example 2: // // //Input: -1->5->3->4->0 //Output: -1->0->3->4->5 // Related Topics Linked List Sort package com.leetcode.editor.en; import java.util.LinkedList; public class SortList{ public static class ListNode { int val; ListNode next; ListNode(int x) { val = x; } } public static void main(String[] args) { Solution solution = new SortList().new Solution(); ListNode node1 = new ListNode(1); ListNode node2 = new ListNode(2); ListNode node3 = new ListNode(3); ListNode node4 = new ListNode(4); node1.next = node2; node2.next = node3; node3.next = node4; solution.sortList(node1); } //leetcode submit region begin(Prohibit modification and deletion) /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { //递归实现merge /* public ListNode sortList(ListNode head) { if(head == null || head.next == null) return head; ListNode slow = head, fast = head, pre = head; while (fast != null && fast.next != null){ pre = slow; slow = slow.next; fast = fast.next.next; } pre.next = null; return merge(sortList(head), sortList(slow)); }*/ /*public ListNode merge(ListNode l1, ListNode l2){ ListNode dummy = new ListNode(-1); ListNode cur = dummy; while (l1 != null && l2 != null){ if(l1.val < l2.val){ cur.next = l1; l1 = l1.next; } else{ cur.next = l2; l2 = l2.next; } cur = cur.next; } if(l1 != null) cur.next = l1; if(l2 != null) cur.next = l2; return dummy.next; }*/ //递归实现merge /*private ListNode merge(ListNode l1, ListNode l2){ if(l1 == null) return l2; if(l2 == null) return l1; if(l1.val < l2.val){ l1.next = merge(l1.next, l2); return l1; } else { l2.next = merge(l1, l2.next); return l2; } }*/ //迭代实现merge: Bottom to Up 空间复杂度: O(1) public ListNode sortList(ListNode head){ ListNode dummy = new ListNode(0); dummy.next = head; //得到链表的长度 int n = 0; while (head != null){ head = head.next; n++; } for(int step = 1; step < n; step <<= 1){ ListNode prev = dummy; ListNode cur = dummy.next; while (cur != null){ //形成两个归并区间 ListNode left = cur; ListNode right = split(left, step); //cur是下一个归并区间的头 cur = split(right, step); //合并两个区间 prev = merge(left, right, prev); } } return dummy.next; } private ListNode split(ListNode head, int step){ if(head == null) return null; for(int i = 1; head.next != null && i < step; i++){ head = head.next; } //此时的head已经是区间尾, 按step分隔开; 返回下一个区间的头(即head.next), 并断开两个区间联系, head.next = null; ListNode right = head.next; head.next = null; return right; } private ListNode merge(ListNode left, ListNode right, ListNode prev){ //新建的合并链 ListNode cur = prev; while (left != null && right != null){ if(left.val < right.val){ cur.next = left; left = left.next; } else { cur.next = right; right = right.next; } cur = cur.next; } if (left != null) cur.next = left; if (right != null) cur.next = right; //返回合并链的链尾, 所以要移动到链尾; 递归时只需要返回链头, 所以没有这步 while (cur.next != null) cur = cur.next; return cur; } } //leetcode submit region end(Prohibit modification and deletion) }
90df495470aed8b424a194092c3c771ae9e96a59
d08d089833d22bc67855593a50af2454e350457c
/app/src/main/java/com/example/ljwang/dashlite/view/RestaurantViewHolder.java
20eeb3a328eed8f012d231a80d7b59d757401f08
[]
no_license
lukaka7/dashlite
c2014407905d0cfa284f837aaefafe5b6872a075
b5937bf484a40ee54a23c4ee2e30057ae58ffdd5
refs/heads/master
2020-03-14T14:27:54.202802
2018-05-08T03:03:26
2018-05-08T03:06:43
131,642,964
0
0
null
null
null
null
UTF-8
Java
false
false
1,307
java
package com.example.ljwang.dashlite.view; import android.support.v7.widget.RecyclerView; import com.example.ljwang.dashlite.databinding.ItemRestaurantBinding; import com.example.ljwang.dashlite.model.Restaurant; import com.example.ljwang.dashlite.viewmodel.ItemRestaurantViewModel; /** * RestaurantViewHolder is a class to hold each Restaurant object's views within a RecyclerView * Use the binding class which is automatically generated from the layout file */ public class RestaurantViewHolder extends RecyclerView.ViewHolder { ItemRestaurantBinding itemRestaurantBinding; public RestaurantViewHolder(ItemRestaurantBinding itemRestaurantBinding) { super(itemRestaurantBinding.getRoot()); this.itemRestaurantBinding = itemRestaurantBinding; } /** * Provides a method for the RecyclerView adapter to bind the data with the ViewHolder * @param restaurant Restaurant object for the view holder */ public void bindRestaurant(Restaurant restaurant) { if (itemRestaurantBinding.getViewModel() == null) { itemRestaurantBinding.setViewModel( new ItemRestaurantViewModel(restaurant, itemView.getContext())); } else { itemRestaurantBinding.getViewModel().setRestaurant(restaurant); } } }
1709c62e9853456c9fcc8e8c4dc63124901b4497
c00e6ed8740a1a324c5cd3ea92845cbc06f08386
/admin017-jdbc/src/com/cts/main/Main.java
453aab66d0151bd6f979b5b28fc436456516d401
[]
no_license
Porselvi-Sundaramoorthi/INT21ADM017
642ae388cd15073f45a14f62d1468806ae620b8f
70698db72303921a60cce6332093c7123bd73434
refs/heads/master
2023-04-28T20:09:03.019836
2021-05-21T13:38:51
2021-05-21T13:38:51
369,445,783
0
0
null
null
null
null
UTF-8
Java
false
false
423
java
package com.cts.main; import com.cts.daoimpl.EmployeeDaoImpl; public class Main { public static void main(String[] args) { EmployeeDaoImpl employeeDaoImplObj=new EmployeeDaoImpl(); Employee empObj=new Employee(); empObj.setEmployeeId(1122); empObj.setEmployeeName("Rajinikanth"); empObj.setSalary(150000.00); empObj.setAge(55); employeeDaoImplObj.addEmployee(empObj); } }
[ "porse@Sindu" ]
porse@Sindu
b90554384ec5e0f96a287b52396d4b7af2d591e4
2d64400b38b4d78979e514e6944880d0ec6ebd33
/src/circle/AppletMain.java
4494cab6c17630cbbf61f7d780eff223cb4beba7
[]
no_license
gphan/circlesim
1cd77b42b3f4d9a4b4fa271683f30a8c6add37d9
e10367da10cfcd88fe08620bb44852417497b6b1
refs/heads/master
2016-09-06T21:27:47.670754
2012-02-26T23:46:43
2012-02-26T23:46:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
455
java
package circle; import javax.swing.JApplet; import javax.swing.SwingUtilities; public class AppletMain extends JApplet { @Override public void init() { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { setSize(800, 800); add(new Main()); setVisible(true); } }); } }
c094c006cdb839d3fb876373a35ee478acd74ce6
493a8065cf8ec4a4ccdf136170d505248ac03399
/net.sf.ictalive.coordination/src/net/sf/ictalive/coordination/agents/impl/AgentImpl.java
19c133ca64025814fda8ec799af7339ce6c4b28e
[]
no_license
ignasi-gomez/aliveclipse
593611b2d471ee313650faeefbed591c17beaa50
9dd2353c886f60012b4ee4fe8b678d56972dff97
refs/heads/master
2021-01-14T09:08:24.839952
2014-10-09T14:21:01
2014-10-09T14:21:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,798
java
/** * <copyright> * </copyright> * * $Id$ */ package net.sf.ictalive.coordination.agents.impl; import java.util.Collection; import net.sf.ictalive.coordination.actions.Action; import net.sf.ictalive.coordination.agents.Agent; import net.sf.ictalive.coordination.agents.AgentsPackage; import net.sf.ictalive.operetta.OM.Role; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EObjectResolvingEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Agent</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link net.sf.ictalive.coordination.agents.impl.AgentImpl#getName <em>Name</em>}</li> * <li>{@link net.sf.ictalive.coordination.agents.impl.AgentImpl#getHasRole <em>Has Role</em>}</li> * <li>{@link net.sf.ictalive.coordination.agents.impl.AgentImpl#getHasAction <em>Has Action</em>}</li> * <li>{@link net.sf.ictalive.coordination.agents.impl.AgentImpl#getAsFolderLocation <em>As Folder Location</em>}</li> * </ul> * </p> * * @generated */ public class AgentImpl extends EObjectImpl implements Agent { /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = ""; /** * The cached value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * The cached value of the '{@link #getHasRole() <em>Has Role</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getHasRole() * @generated * @ordered */ protected EList<Role> hasRole; /** * The cached value of the '{@link #getHasAction() <em>Has Action</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getHasAction() * @generated * @ordered */ protected EList<Action> hasAction; /** * The default value of the '{@link #getAsFolderLocation() <em>As Folder Location</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getAsFolderLocation() * @generated * @ordered */ protected static final String AS_FOLDER_LOCATION_EDEFAULT = null; /** * The cached value of the '{@link #getAsFolderLocation() <em>As Folder Location</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getAsFolderLocation() * @generated * @ordered */ protected String asFolderLocation = AS_FOLDER_LOCATION_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected AgentImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return AgentsPackage.Literals.AGENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, AgentsPackage.AGENT__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Role> getHasRole() { if (hasRole == null) { hasRole = new EObjectResolvingEList<Role>(Role.class, this, AgentsPackage.AGENT__HAS_ROLE); } return hasRole; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Action> getHasAction() { if (hasAction == null) { hasAction = new EObjectResolvingEList<Action>(Action.class, this, AgentsPackage.AGENT__HAS_ACTION); } return hasAction; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getAsFolderLocation() { return asFolderLocation; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setAsFolderLocation(String newAsFolderLocation) { String oldAsFolderLocation = asFolderLocation; asFolderLocation = newAsFolderLocation; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, AgentsPackage.AGENT__AS_FOLDER_LOCATION, oldAsFolderLocation, asFolderLocation)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case AgentsPackage.AGENT__NAME: return getName(); case AgentsPackage.AGENT__HAS_ROLE: return getHasRole(); case AgentsPackage.AGENT__HAS_ACTION: return getHasAction(); case AgentsPackage.AGENT__AS_FOLDER_LOCATION: return getAsFolderLocation(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case AgentsPackage.AGENT__NAME: setName((String)newValue); return; case AgentsPackage.AGENT__HAS_ROLE: getHasRole().clear(); getHasRole().addAll((Collection<? extends Role>)newValue); return; case AgentsPackage.AGENT__HAS_ACTION: getHasAction().clear(); getHasAction().addAll((Collection<? extends Action>)newValue); return; case AgentsPackage.AGENT__AS_FOLDER_LOCATION: setAsFolderLocation((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case AgentsPackage.AGENT__NAME: setName(NAME_EDEFAULT); return; case AgentsPackage.AGENT__HAS_ROLE: getHasRole().clear(); return; case AgentsPackage.AGENT__HAS_ACTION: getHasAction().clear(); return; case AgentsPackage.AGENT__AS_FOLDER_LOCATION: setAsFolderLocation(AS_FOLDER_LOCATION_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case AgentsPackage.AGENT__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case AgentsPackage.AGENT__HAS_ROLE: return hasRole != null && !hasRole.isEmpty(); case AgentsPackage.AGENT__HAS_ACTION: return hasAction != null && !hasAction.isEmpty(); case AgentsPackage.AGENT__AS_FOLDER_LOCATION: return AS_FOLDER_LOCATION_EDEFAULT == null ? asFolderLocation != null : !AS_FOLDER_LOCATION_EDEFAULT.equals(asFolderLocation); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (name: "); result.append(name); result.append(", asFolderLocation: "); result.append(asFolderLocation); result.append(')'); return result.toString(); } } //AgentImpl
15e3d2f566dedb775914e65765e74362d82d077b
7581fe784b5b63e4d2ca9b0aabb81bcf7fc08c32
/src/com/facebook/buck/rules/ResourceSourcePath.java
f876c925dfba84e7a4014877bd819dd509284566
[ "Apache-2.0" ]
permissive
Luise-li/buck
084066fc040c95b0a9acfe817c594605d9291da4
9b7e74a76dd9f6fab265a40c61a2f609967bfeef
refs/heads/master
2021-01-15T15:15:51.426540
2015-11-28T15:08:51
2015-11-28T15:27:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,358
java
/* * Copyright 2015-present Facebook, Inc. * * 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.facebook.buck.rules; import com.facebook.buck.util.PackagedResource; import java.nio.file.Path; /** * {@link SourcePath} that wraps a resource embedded inside a JAR. */ public class ResourceSourcePath extends AbstractSourcePath { private final PackagedResource resource; public ResourceSourcePath(PackagedResource resource) { this.resource = resource; } /** * Class name followed by relative file path, e.g.: * com.facebook.buck.MyClass#some_resource_file.abc */ public String getResourceIdentifier() { return resource.getResourceIdentifier(); } public Path getAbsolutePath() { return resource.get(); } @Override protected Object asReference() { return getResourceIdentifier(); } }
81601f14bbf9c282212fd698a040407fa0475ae4
b52fa223f54b51cc271e1cbfc4c28aa76e734718
/flink-connectors/flink-connector-hive/src/main/java/org/apache/flink/connectors/hive/read/SplitReader.java
fcf47da230f81b587df96ab1569754908ed45311
[ "ISC", "Apache-2.0", "BSD-3-Clause", "OFL-1.1" ]
permissive
itharavi/flink
1d0b7e711df93d3a13eae42da71a08dc45aaf71f
f0f9343a35ff21017e2406614b34a9b1f2712330
refs/heads/master
2023-08-03T02:53:12.278756
2020-01-08T05:58:54
2020-01-10T15:51:31
233,090,272
3
1
Apache-2.0
2023-07-23T02:28:35
2020-01-10T16:47:58
null
UTF-8
Java
false
false
1,613
java
/* * 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.flink.connectors.hive.read; import org.apache.flink.table.dataformat.BaseRow; import java.io.Closeable; import java.io.IOException; /** * Split reader to read record from files. The reader is only responsible for reading the data * of a single split. */ public interface SplitReader extends Closeable { /** * Method used to check if the end of the input is reached. * * @return True if the end is reached, otherwise false. * @throws IOException Thrown, if an I/O error occurred. */ boolean reachedEnd() throws IOException; /** * Reads the next record from the input. * * @param reuse Object that may be reused. * @return Read record. * * @throws IOException Thrown, if an I/O error occurred. */ BaseRow nextRecord(BaseRow reuse) throws IOException; }
465036f5995cfdd8ef7021b217149c0f1e25310c
961c6dc0cedca3870b93ef0d68531a3c4432be5d
/app/src/main/java/com/kooloco/uilocal/modify/presenter/ModifyDurationPresenter.java
54800e74c5b8a4d6d0a4f2db91e47b7932a7235b
[]
no_license
softwrengr/Kolocco
53f061f3be0c3e4dc46bb0b318540fe7b113f092
2c54e9d1a9ddca849c9bfe5f2b1c751b4e42fe80
refs/heads/master
2020-04-07T12:16:27.008968
2018-11-28T14:49:34
2018-11-28T14:49:34
158,360,981
0
0
null
null
null
null
UTF-8
Java
false
false
3,701
java
package com.kooloco.uilocal.modify.presenter; /** * Created by hlink on 20/1/18. */ import android.os.Bundle; import com.google.gson.Gson; import com.kooloco.core.Session; import com.kooloco.data.repository.KoolocoRepository; import com.kooloco.di.PerActivity; import com.kooloco.model.Order; import com.kooloco.model.ReceiverData; import com.kooloco.model.Response; import com.kooloco.ui.base.BasePresenter; import com.kooloco.ui.manager.Passable; import com.kooloco.ui.navigation.AppNavigator; import com.kooloco.uilocal.modify.view.ModifyAddressView; import com.kooloco.uilocal.modify.view.ModifyDurationView; import com.kooloco.util.SubscribeWithView; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.inject.Inject; @PerActivity public class ModifyDurationPresenter extends BasePresenter<ModifyDurationView> { @Inject KoolocoRepository koolocoRepository; @Inject Session session; @Inject public ModifyDurationPresenter() { } @Override public void resume() { } @Override public void pause() { } @Override public void destroy() { } public void openMettingLocation(boolean isLocation, Order order) { navigator.openModifyLocation().hasData(new Passable<ModifyAddressView>() { @Override public void passData(ModifyAddressView modifyAddressView) { modifyAddressView.setIsLocation(isLocation); modifyAddressView.setOrder(order); } }).replace(true); } public void getData(String id) { view.showLoader(); Map<String, String> map = new HashMap<>(); map.put("order_id", id); map.put("user_id", session.getUser().getId()); koolocoRepository.getDurationLocal(map).subscribe(new SubscribeWithView<Response<List<String>>>(view) { @Override public void onSuccess(Response<List<String>> listResponse) { view.hideLoader(); view.setData(listResponse.getData()); } @Override public void onError(Throwable e) { super.onError(e); view.hideLoader(); view.setData(new ArrayList<>()); } }); } public void callWs(boolean isLocation, Order order, String duration) { view.showLoader(); Map<String, String> map = new HashMap<>(); map.put("order_id", order.getId()); map.put("user_id", session.getUser().getId()); map.put("is_modify_duration", "1"); map.put("meeting_address", ""); map.put("meeting_latitude", ""); map.put("meeting_longitude", ""); map.put("duration", duration); koolocoRepository.setModifyLocationDuration(map).subscribe(new SubscribeWithView<Response>(view) { @Override public void onSuccess(Response listResponse) { view.hideLoader(); if (isLocation) { openMettingLocation(isLocation, order); } else { navigator.goBack(); } } @Override public void onError(Throwable e) { super.onError(e); view.hideLoader(); view.setData(new ArrayList<>()); } }); } public void openChat(ReceiverData receiverData) { Bundle bundle = new Bundle(); bundle.putString("receiverData", new Gson().toJson(receiverData)); navigator.openIsloatedFullActivity().setPage(AppNavigator.Pages.Chat).addBundle(bundle).start(); } }
74548cf9797ee74fbc6017ee3d994bbaae5cecd8
eec1df5fef4d6e01c07fbf8e48c3488df5ffdd95
/app/src/main/java/com/futrtch/live/mvvm/vm/LiveRecordViewModelFactory.java
9a9fa00ceb0c84ce3dbec29f5040ee2c4d84e7e8
[]
no_license
desfate/3DLive
9e3369e436b6fded6b2193fc651bd6f827776d50
0888252ad0325561dd42a464fadab3ee49bee176
refs/heads/master
2023-04-14T13:34:53.569204
2021-04-21T01:35:00
2021-04-21T01:35:00
304,176,574
0
0
null
null
null
null
UTF-8
Java
false
false
965
java
package com.futrtch.live.mvvm.vm; import android.app.Application; import androidx.annotation.NonNull; import androidx.lifecycle.LifecycleOwner; import androidx.lifecycle.ViewModel; import androidx.lifecycle.ViewModelProvider; import com.futrtch.live.mvvm.repository.LiveRoomRepository; public class LiveRecordViewModelFactory extends ViewModelProvider.AndroidViewModelFactory { LifecycleOwner lifecycleOwner; /** * Creates a {@code AndroidViewModelFactory} * * @param application an application to pass in {@link androidx.lifecycle.AndroidViewModel} */ public LiveRecordViewModelFactory(@NonNull Application application, LifecycleOwner lifecycleOwner) { super(application); this.lifecycleOwner = lifecycleOwner; } @NonNull @Override public <T extends ViewModel> T create(@NonNull Class<T> modelClass) { return (T) new LiveRecordViewModel(new LiveRoomRepository(lifecycleOwner)); } }
be466adbfa32021465420f2cc77d9b98da78ba29
860888d4b67a0f6d2f97fd12c0b46a587feceb3c
/Doces.java
f9596b1750687dc28ee74cccb7c22c7666901980
[]
no_license
EmersonSantana1994/Turma30Java
556cc86c27c0897a597fdfc72682d3fcbf5d1974
2c51b82af3bdeb4f4364d320d5dc047b20df2c87
refs/heads/main
2023-07-03T10:23:34.456986
2021-08-12T16:43:01
2021-08-12T16:43:01
393,747,597
0
0
null
null
null
null
UTF-8
Java
false
false
440
java
package entidades; public class Doces extends Produto { private String fabricante; public Doces(String codigo, String nome, double valor, int estoque, String fabricante) { super(codigo, nome, valor, estoque); this.fabricante = fabricante; } public String getFabricante() { return fabricante; } public void setFabricante(String fabricante) { this.fabricante = fabricante; } } }
3c2e28ba693a3d54db396d6be08ba584cb9e01cb
c3290377b75dd71f66ba51dee1e0c9ce49ce3b89
/triangle/src/Test/JudgeTest.java
1dfdad81c1ec5bbe41b2f5ec3c5c8d4d41e7d2c8
[]
no_license
sunxiaofeiT/softwareTest-Lab1
3d69bdf03d12ccdaaea92acdc27153ab25843b63
83a0b9f5034fbe6d5f870feac70bf842ac836f0a
refs/heads/master
2021-04-15T16:58:09.166186
2018-03-25T05:49:28
2018-03-25T05:49:28
126,668,342
0
0
null
null
null
null
GB18030
Java
false
false
1,111
java
package Test; import static org.junit.Assert.assertEquals; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import judge.Judge; class JudgeTest { @BeforeEach void setUp() throws Exception { System.out.println("测试开始"); } @Test void test1() { Judge judge = new Judge(1,2,3); String result = judge.get_re(); System.out.println(result); assertEquals("不是三角形",result); } @Test void test2() { Judge judge = new Judge(2,2,3); String result = judge.get_re(); System.out.println(result); assertEquals("等腰三角形",result); } @Test void test3() { Judge judge = new Judge(5,2,3); String result = judge.get_re(); System.out.println(result); assertEquals("不是三角形",result); } @Test void test4() { Judge judge = new Judge(6,6,6); String result = judge.get_re(); System.out.println(result); assertEquals("等边三角形",result); } @Test void test5() { Judge judge = new Judge(4,2,3); String result = judge.get_re(); System.out.println(result); assertEquals("不是三角形",result); } }
8c971077f2af38278c7ae83bf3f85b6c1171f3b2
c4352bde96e74d997be29e31517aa5f1f54e9795
/Java_Basic/Files And Directories - Lab/src/_4ExtractIntegers.java
0af5dd71aeff8584b98b625a3e35a0ec716f23e7
[]
no_license
chmitkov/SoftUni
b0f4ec10bb89a7dc350c063a02a3535ef9e901b4
52fd6f85718e07ff492c67d8166ed5cfaf5a58ff
refs/heads/master
2022-11-29T01:06:51.947775
2019-10-12T12:29:03
2019-10-12T12:29:03
138,323,012
1
0
null
2022-11-24T09:42:25
2018-06-22T16:09:50
Java
UTF-8
Java
false
false
598
java
import java.io.*; import java.util.Scanner; public class _4ExtractIntegers { public static void main(String[] args) throws IOException{ String inputPath = "C:\\TestFolder\\input.txt"; String outputPath = "C:\\TestFolder\\output.txt"; Scanner scanner = new Scanner(new FileInputStream(inputPath)); PrintWriter out = new PrintWriter(new FileOutputStream(outputPath)); while (scanner.hasNext()){ if (scanner.hasNextInt()){ System.out.println(scanner.nextInt()); } scanner.next(); } } }
5a850922deed774f59f909ca06268391e2df8153
a3a80c644aa52c78a56c188da5dfae3ffcbbf2e0
/HashMap2/MeetingRoomTwo.java
3a285fc3fdbfccb44b22435ace6e5aef81fd8635
[]
no_license
tanmayarya/JavaWorkspace
95a278cbec804f06aa23ff380cebfbc722e07e55
cd6bb94442a2580ab39d59b32910ae6b05f4a1cf
refs/heads/master
2020-07-03T00:39:47.130613
2019-08-14T11:22:42
2019-08-14T11:22:42
201,728,867
0
0
null
null
null
null
UTF-8
Java
false
false
1,157
java
package HashMap2; import java.util.*; public class MeetingRoomTwo { public static int minMeetingRooms(int[] start, int end[]) { // write your code here. int count = 0, max = 0; Arrays.sort(start); Arrays.sort(end); int i = 0, j = 0; while (i < start.length && j < end.length) { if (start[i] < end[j]) { count++; i++; } else { count--; j++; } max = Math.max(count, max); } while (i < start.length) { count++; i++; max = Math.max(count, max); } return max; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); // Input for number of meetings. int N = sc.nextInt(); int[] start = new int[N]; int[] end = new int[N]; // Input for intervals. for (int i = 0; i < N; i++) { start[i] = sc.nextInt(); end[i] = sc.nextInt(); } int result = minMeetingRooms(start, end); System.out.println(result); } // Function to display a 2D array. public static void display(int[][] arr) { for (int i = 0; i < arr.length; i++) { for (int j = 0; j < arr[0].length; j++) { System.out.print(arr[i] + " "); } System.out.println(); } } }
64ed184092ef230cc3633d02115fd0f87ae181e3
3d8c5fc4c05794f8f868cd2c8ae4edea09022f72
/appliFilmAngular/src/main/java/film/web/FilmRestController.java
0ac37c959c885909fcc109c7e6d8d0116bf20e08
[]
no_license
kahinaKrimed/projet-certif
c60f20d66cc768e0d9215501b5f01d2ae953ccac
c785479c8a70e6e143ea661e921b2dcd1c9effd2
refs/heads/master
2021-01-19T22:49:06.265972
2017-04-20T15:42:04
2017-04-20T15:42:04
88,874,290
0
0
null
null
null
null
UTF-8
Java
false
false
1,386
java
//package film.web; //import org.springframework.web.bind.annotation.RequestMapping; //import org.springframework.web.bind.annotation.RequestMethod; //import org.springframework.web.bind.annotation.RestController; //import org.springframework.web.client.RestTemplate; // // // //import appliAngular.jsonToObject.NowPlayingFilmJsonToObject; //import appliAngular.jsonToObject.PersonJsonToObject; // // //@RestController //public class FilmRestController { // // // // @RequestMapping(value = "/testrt", method = RequestMethod.GET) // public void testrt() { // // RestTemplate restT = new RestTemplate(); // PersonJsonToObject personJsonToObject = restT.getForObject("https://api.themoviedb.org/3/search/person?api_key=f9dbb51c988c033af6bfcabbc3a01152&query=ben", PersonJsonToObject.class); // System.out.println(personJsonToObject.getResults()[0].getName()); // // } // // @RequestMapping(value = "/testFilmConvert", method = RequestMethod.GET) // public void testFilmConvert() { // // RestTemplate restTemplateFilm = new RestTemplate(); // NowPlayingFilmJsonToObject filmJsonToObject= restTemplateFilm.getForObject("https://api.themoviedb.org/3/movie/popular?api_key=f9dbb51c988c033af6bfcabbc3a01152&language=en-US&page=1", NowPlayingFilmJsonToObject.class); // System.out.println(filmJsonToObject.getResults()[0].getOriginal_title()); // // } // // //}