MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getProp

Method getProp

ij/src/main/java/ij/ImagePlus.java:1666–1675  ·  view source on GitHub ↗

Returns as a string the image property associated with the specified key or null if the property is not found. @see #setProp @see #getNumericProp @see #getStringProperty

(String key)

Source from the content-addressed store, hash-verified

1664 * @see #getStringProperty
1665 */
1666 public String getProp(String key) {
1667 if (imageProperties==null)
1668 return getStringProperty(key);
1669 else {
1670 String value = imageProperties.getProperty(key);
1671 if (value==null)
1672 value = getStringProperty(key);
1673 return value;
1674 }
1675 }
1676
1677 /** Returns the numeric property associated with the specified key
1678 * or NaN if the property is not found.

Callers 15

getNumericPropMethod · 0.95
getStackMethod · 0.95
getInfoMethod · 0.95
doPropertyMethod · 0.95
runMethod · 0.95
updateImageMethod · 0.80
getUniqueNameMethod · 0.80
convertMethod · 0.80
getImageInfoMethod · 0.80
getInfoMethod · 0.80
cropMethod · 0.80
convertHyperstackMethod · 0.80

Calls 2

getStringPropertyMethod · 0.95
getPropertyMethod · 0.45

Tested by

no test coverage detected