Class PictureFqnUtil
- java.lang.Object
-
- com._1c.g5.v8.dt.bp.scheme.pictures.PictureFqnUtil
-
public final class PictureFqnUtil extends Object
Utilities to manipulate picture FQNs.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StringbuildGraphicalSchemePictureBlobFqn(GraphicalSchemePicture picture)Builds graphical scheme picture blob FQN.static StringbuildGraphicalSchemePictureBlobFqn(String graphicalSchemeFqn, String item, String feature)Builds graphical scheme picture blob FQN.static PictureFqnPartsextractGraphicalSchemePictureBlobFqnParts(String fqn)Extracts parts from an FQN belonging to a graphical scheme picture blob.static booleanisGraphicalSchemePictureBlobFqn(String fqn)Checks if the specified FQN belongs to a graphical scheme picture blob.
-
-
-
Method Detail
-
buildGraphicalSchemePictureBlobFqn
public static String buildGraphicalSchemePictureBlobFqn(GraphicalSchemePicture picture)
Builds graphical scheme picture blob FQN.- Parameters:
picture- The graphical scheme picture. May not benull.- Returns:
- the picture blob FQN. Never
null.
-
buildGraphicalSchemePictureBlobFqn
public static String buildGraphicalSchemePictureBlobFqn(String graphicalSchemeFqn, String item, String feature)
Builds graphical scheme picture blob FQN.- Parameters:
graphicalSchemeFqn- The graphical scheme FQN. May not benull.item- The graphical scheme item. May not benull.feature- The graphical scheme item feature. May not benull.- Returns:
- the picture blob FQN. Never
null.
-
isGraphicalSchemePictureBlobFqn
public static boolean isGraphicalSchemePictureBlobFqn(String fqn)
Checks if the specified FQN belongs to a graphical scheme picture blob.- Parameters:
fqn- The FQN to check. May not benull.- Returns:
trueif the FQN belongs to a graphical scheme picture blob,falseotherwise.
-
extractGraphicalSchemePictureBlobFqnParts
public static PictureFqnParts extractGraphicalSchemePictureBlobFqnParts(String fqn)
Extracts parts from an FQN belonging to a graphical scheme picture blob.- Parameters:
fqn- The FQN to extract parts from. May not benull.- Returns:
- the extracted parts. Never
null.
-
-