MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / getStrings

Method getStrings

src/main/java/core/org/xbill/DNS/TXTBase.java:97–103  ·  view source on GitHub ↗

Returns the text strings @return A list of Strings corresponding to the text strings.

()

Source from the content-addressed store, hash-verified

95 * @return A list of Strings corresponding to the text strings.
96 */
97public List
98getStrings() {
99 List list = new ArrayList(strings.size());
100 for (int i = 0; i < strings.size(); i++)
101 list.add(byteArrayToString((byte []) strings.get(i), false));
102 return list;
103}
104
105/**
106 * Returns the text strings

Callers

nothing calls this directly

Calls 4

byteArrayToStringMethod · 0.80
sizeMethod · 0.45
addMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected