Class SVNOperation


  • public class SVNOperation
    extends java.lang.Object
    SVNOperation represents the user operation that exposed a conflict.
    Since:
    1.3
    Version:
    1.3
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private SVNOperation​(java.lang.String name)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static SVNOperation fromString​(java.lang.String operation)
      Converts a string operation name to an SVNOperation object.
      java.lang.String getName()
      Returns the string representation of this object.
      java.lang.String toString()
      Returns the string representation of this object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • UPDATE

        public static final SVNOperation UPDATE
        Update operation.
        Since:
        1.3
      • SWITCH

        public static final SVNOperation SWITCH
        Switch operation.
        Since:
        1.3
      • MERGE

        public static final SVNOperation MERGE
        Merge operation.
        Since:
        1.3
      • NONE

        public static final SVNOperation NONE
        None.
        Since:
        1.3
      • myName

        private final java.lang.String myName
    • Constructor Detail

      • SVNOperation

        private SVNOperation​(java.lang.String name)
    • Method Detail

      • fromString

        public static SVNOperation fromString​(java.lang.String operation)
        Converts a string operation name to an SVNOperation object.
        Parameters:
        operation -
        Returns:
        SVNOperation constant or null, if no SVNOperation constant matches the given name
        Since:
        1.3
      • getName

        public java.lang.String getName()
        Returns the string representation of this object.
        Returns:
        string representation
        Since:
        1.3
      • toString

        public java.lang.String toString()
        Returns the string representation of this object.
        Overrides:
        toString in class java.lang.Object
        Returns:
        string representation
        Since:
        1.3