Skip to content

Commit b9794d5

Browse files
committed
PDFBOX-5660: add toString()
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1923792 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8629cd9 commit b9794d5

File tree

1 file changed

+5
-0
lines changed
  • pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/blend

1 file changed

+5
-0
lines changed

pdfbox/src/main/java/org/apache/pdfbox/pdmodel/graphics/blend/BlendMode.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,4 +387,9 @@ private static void getLuminosityRGB(float[] srcValues, float[] dstValues, float
387387
result[2] = b / 255.0f;
388388
}
389389

390+
@Override
391+
public String toString()
392+
{
393+
return "BlendMode{name=" + name.getName() + ", isSeparable=" + isSeparable + '}';
394+
}
390395
}

0 commit comments

Comments
 (0)