MCPcopy
hub / github.com/yixia/VitamioBundle / getString

Method getString

vitamio/src/io/vov/vitamio/Metadata.java:167–177  ·  view source on GitHub ↗
(final int key)

Source from the content-addressed store, hash-verified

165 }
166
167 public String getString(final int key) {
168 byte[] value = mMeta.get(key);
169 if (value == null) {
170 return null;
171 }
172 try {
173 return new String(value, mEncoding);
174 } catch (UnsupportedEncodingException e) {
175 return new String(value);
176 }
177 }
178
179 public int getInt(final int key) {
180 try {

Callers 10

parseMethod · 0.95
getIntMethod · 0.95
getBooleanMethod · 0.95
getLongMethod · 0.95
getDoubleMethod · 0.95
prescanMethod · 0.45
handleMessageMethod · 0.45
getIdentifiersMethod · 0.45
onPreExecuteMethod · 0.45
getThumbnailPathMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected