<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Groupdocs API References – com.groupdocs.comparison.result</title>
    <link>/comparison/java/com.groupdocs.comparison.result/</link>
    <description>Recent content in com.groupdocs.comparison.result on Groupdocs API References</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    
	  <atom:link href="/comparison/java/com.groupdocs.comparison.result/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Java: ChangeInfo</title>
      <link>/comparison/java/com.groupdocs.comparison.result/changeinfo/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/changeinfo/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public class ChangeInfo
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The ChangeInfo class represents information about a specific change in a document comparison.&lt;/p&gt;
&lt;p&gt;It provides details such as the type of change, the affected area, and the content before and after the change. Use this class to retrieve information about individual changes within a comparison result.&lt;/p&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
 try (Comparer comparer = new Comparer(sourceFile)) {
     comparer.add(targetFile);

     comparer.compare(resultFile);
     // Get a list of changes from the comparison result
     ChangeInfo[] changes = comparer.getChanges();
     // Iterate through the changes and retrieve information
     for (ChangeInfo change : changes) {
         ChangeType changeType = change.getType();
         String componentType = change.getComponentType();
         PageInfo pageInfo = change.getPageInfo();
         // Process the change information as needed
         // ...
     }
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;constructors&#34;&gt;Constructors&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Constructor&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ChangeInfo--&#34;&gt;ChangeInfo()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getId--&#34;&gt;getId()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets unique id of the change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setId-int-&#34;&gt;setId(int value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets unique id of the change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getComparisonAction--&#34;&gt;getComparisonAction()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the action that will be applied to the change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setComparisonAction-com.groupdocs.comparison.result.ComparisonAction-&#34;&gt;setComparisonAction(ComparisonAction value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the action that should be applied to the change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getPageInfo--&#34;&gt;getPageInfo()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets information about the page, on which current change was found.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setPageInfo-com.groupdocs.comparison.result.PageInfo-&#34;&gt;setPageInfo(PageInfo value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets information about the page, on which current change was found.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getBox--&#34;&gt;getBox()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets coordinates of changed element on the page.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setBox-com.groupdocs.comparison.result.Rectangle-&#34;&gt;setBox(Rectangle value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets coordinates of changed element on the page.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getText--&#34;&gt;getText()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets text value of the change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setText-java.lang.String-&#34;&gt;setText(String value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets text value of the change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getStyleChanges--&#34;&gt;getStyleChanges()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the list of style changes.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setStyleChanges-java.util.List-com.groupdocs.comparison.result.StyleChangeInfo--&#34;&gt;setStyleChanges(List&lt;StyleChangeInfo&gt; value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the list of style changes.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getAuthors--&#34;&gt;getAuthors()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the list of authors.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setAuthors-java.util.List-java.lang.String--&#34;&gt;setAuthors(List&lt;String&gt; value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the list of authors.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getType--&#34;&gt;getType()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the type of the change represented by enum &lt;a href=&#34;../../com.groupdocs.comparison.result/changetype&#34;&gt;ChangeType&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getTargetText--&#34;&gt;getTargetText()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets changed text from target document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setTargetText-java.lang.String-&#34;&gt;setTargetText(String value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets changed text from target document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getSourceText--&#34;&gt;getSourceText()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets changed text from source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setSourceText-java.lang.String-&#34;&gt;setSourceText(String value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets changed text from source document.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getComponentType--&#34;&gt;getComponentType()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the type of the changed component.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setComponentType-java.lang.String-&#34;&gt;setComponentType(String value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the type of the changed component.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toString--&#34;&gt;toString()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;ChangeInfo--&#34;&gt;ChangeInfo()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public ChangeInfo()
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;getId--&#34;&gt;getId()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final int getId()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets unique id of the change.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int - the id of the change&lt;/p&gt;
&lt;h3 id=&#34;setId-int-&#34;&gt;setId(int value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setId(int value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets unique id of the change.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The id of the change&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getComparisonAction--&#34;&gt;getComparisonAction()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final ComparisonAction getComparisonAction()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the action that will be applied to the change.&lt;/p&gt;
&lt;p&gt;Action (&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction#ACCEPT&#34;&gt;ComparisonAction.ACCEPT&lt;/a&gt; or &lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction#REJECT&#34;&gt;ComparisonAction.REJECT&lt;/a&gt;) tells comparison what to do with this change.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction&#34;&gt;ComparisonAction&lt;/a&gt; - the action that will be applied to the change&lt;/p&gt;
&lt;h3 id=&#34;setComparisonAction-com.groupdocs.comparison.result.ComparisonAction-&#34;&gt;setComparisonAction(ComparisonAction value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setComparisonAction(ComparisonAction value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the action that should be applied to the change.&lt;/p&gt;
&lt;p&gt;Action (&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction#ACCEPT&#34;&gt;ComparisonAction.ACCEPT&lt;/a&gt; or &lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction#REJECT&#34;&gt;ComparisonAction.REJECT&lt;/a&gt;) tells comparison what to do with this change.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction&#34;&gt;ComparisonAction&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The action that should be applied to the change&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getPageInfo--&#34;&gt;getPageInfo()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final PageInfo getPageInfo()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets information about the page, on which current change was found.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/pageinfo&#34;&gt;PageInfo&lt;/a&gt; - information about the page&lt;/p&gt;
&lt;h3 id=&#34;setPageInfo-com.groupdocs.comparison.result.PageInfo-&#34;&gt;setPageInfo(PageInfo value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setPageInfo(PageInfo value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets information about the page, on which current change was found.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/pageinfo&#34;&gt;PageInfo&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Information about the page&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getBox--&#34;&gt;getBox()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final Rectangle getBox()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets coordinates of changed element on the page.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/rectangle&#34;&gt;Rectangle&lt;/a&gt; - coordinates of changed element&lt;/p&gt;
&lt;h3 id=&#34;setBox-com.groupdocs.comparison.result.Rectangle-&#34;&gt;setBox(Rectangle value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setBox(Rectangle value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets coordinates of changed element on the page.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/rectangle&#34;&gt;Rectangle&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Coordinates of changed element, not null&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getText--&#34;&gt;getText()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final String getText()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets text value of the change.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - text value of the change&lt;/p&gt;
&lt;h3 id=&#34;setText-java.lang.String-&#34;&gt;setText(String value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setText(String value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets text value of the change.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;Text value of the change&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getStyleChanges--&#34;&gt;getStyleChanges()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final List&amp;lt;StyleChangeInfo&amp;gt; getStyleChanges()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the list of style changes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.util.List&amp;lt;com.groupdocs.comparison.result.StyleChangeInfo&amp;gt; - the list of style changes&lt;/p&gt;
&lt;h3 id=&#34;setStyleChanges-java.util.List-com.groupdocs.comparison.result.StyleChangeInfo--&#34;&gt;setStyleChanges(List&lt;StyleChangeInfo&gt; value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setStyleChanges(List&amp;lt;StyleChangeInfo&amp;gt; value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the list of style changes.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.util.List&amp;lt;com.groupdocs.comparison.result.StyleChangeInfo&amp;gt;&lt;/td&gt;
&lt;td&gt;The list of style changes&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getAuthors--&#34;&gt;getAuthors()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final List&amp;lt;String&amp;gt; getAuthors()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the list of authors.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.util.List&amp;lt;java.lang.String&amp;gt; - the list of authors&lt;/p&gt;
&lt;h3 id=&#34;setAuthors-java.util.List-java.lang.String--&#34;&gt;setAuthors(List&lt;String&gt; value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setAuthors(List&amp;lt;String&amp;gt; value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the list of authors.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.util.List&amp;lt;java.lang.String&amp;gt;&lt;/td&gt;
&lt;td&gt;The list of authors&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getType--&#34;&gt;getType()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final ChangeType getType()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the type of the change represented by enum &lt;a href=&#34;../../com.groupdocs.comparison.result/changetype&#34;&gt;ChangeType&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/changetype&#34;&gt;ChangeType&lt;/a&gt; - the type of the change&lt;/p&gt;
&lt;h3 id=&#34;getTargetText--&#34;&gt;getTargetText()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String getTargetText()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets changed text from target document.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - the changed text&lt;/p&gt;
&lt;h3 id=&#34;setTargetText-java.lang.String-&#34;&gt;setTargetText(String value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setTargetText(String value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets changed text from target document.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;The changed text&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getSourceText--&#34;&gt;getSourceText()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String getSourceText()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets changed text from source document.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - the changed text&lt;/p&gt;
&lt;h3 id=&#34;setSourceText-java.lang.String-&#34;&gt;setSourceText(String value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setSourceText(String value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets changed text from source document.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;The changed text&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getComponentType--&#34;&gt;getComponentType()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String getComponentType()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the type of the changed component.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - the type of the changed component&lt;/p&gt;
&lt;h3 id=&#34;setComponentType-java.lang.String-&#34;&gt;setComponentType(String value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setComponentType(String value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the type of the changed component.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;The type of the changed component&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;toString--&#34;&gt;toString()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String toString()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: PageInfo</title>
      <link>/comparison/java/com.groupdocs.comparison.result/pageinfo/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/pageinfo/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public class PageInfo
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The PageInfo class represents information about a specific page in a document.&lt;/p&gt;
&lt;p&gt;It provides details such as the page number, width, height, and other relevant properties. Use this class to retrieve information about individual pages in a document during the comparison process.&lt;/p&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
 try (Comparer comparer = new Comparer(sourceFile)) {
     comparer.add(targetFile);

     comparer.compare(resultFile);
     final ChangeInfo[] changes = comparer.getChanges();
     for (ChangeInfo change : changes) {
         final PageInfo pageInfo = change.getPageInfo();
         // Print the page information
         System.out.println(&amp;#34;Page Number: &amp;#34; + pageInfo.getPageNumber());
         System.out.println(&amp;#34;Page Width: &amp;#34; + pageInfo.getWidth());
         System.out.println(&amp;#34;Page Height: &amp;#34; + pageInfo.getHeight());
     }
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;constructors&#34;&gt;Constructors&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Constructor&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PageInfo-int-int-int-&#34;&gt;PageInfo(int pageNumber, int width, int height)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Initializes a new instance of the PageInfo class with configuring pageNumber, width and height.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getWidth--&#34;&gt;getWidth()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the width of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setWidth-int-&#34;&gt;setWidth(int value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the width of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getHeight--&#34;&gt;getHeight()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the height of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setHeight-int-&#34;&gt;setHeight(int value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the height of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getPageNumber--&#34;&gt;getPageNumber()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the number of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setPageNumber-int-&#34;&gt;setPageNumber(int value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the number of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toString--&#34;&gt;toString()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;PageInfo-int-int-int-&#34;&gt;PageInfo(int pageNumber, int width, int height)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public PageInfo(int pageNumber, int width, int height)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Initializes a new instance of the PageInfo class with configuring pageNumber, width and height.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;pageNumber&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The number of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;width&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The width of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;height&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The height of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getWidth--&#34;&gt;getWidth()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final int getWidth()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the width of the page&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int - the width of the page&lt;/p&gt;
&lt;h3 id=&#34;setWidth-int-&#34;&gt;setWidth(int value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setWidth(int value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the width of the page&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The width of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getHeight--&#34;&gt;getHeight()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final int getHeight()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the height of the page&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int - the height of the page&lt;/p&gt;
&lt;h3 id=&#34;setHeight-int-&#34;&gt;setHeight(int value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setHeight(int value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the height of the page&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The height of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getPageNumber--&#34;&gt;getPageNumber()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final int getPageNumber()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the number of the page&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int - the number of the page&lt;/p&gt;
&lt;h3 id=&#34;setPageNumber-int-&#34;&gt;setPageNumber(int value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setPageNumber(int value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the number of the page&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The number of the page&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;toString--&#34;&gt;toString()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String toString()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: Rectangle</title>
      <link>/comparison/java/com.groupdocs.comparison.result/rectangle/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/rectangle/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final class Rectangle
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The Rectangle class represents changed area on a document.&lt;/p&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
 try (Comparer comparer = new Comparer(sourceFile)) {
     comparer.add(targetFile);

     comparer.compare(resultFile);
     final ChangeInfo[] changes = comparer.getChanges();
     for (ChangeInfo change : changes) {
         final Rectangle box = change.getBox();
         // Print the changed area on page
         System.out.println(&amp;#34;Changed area on a page: &amp;#34;
                 + box.getX() + &amp;#34;, &amp;#34; + box.getY() + &amp;#34;, &amp;#34; + box.getWidth() + &amp;#34;, &amp;#34; + box.getHeight());
     }
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;constructors&#34;&gt;Constructors&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Constructor&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#Rectangle--&#34;&gt;Rectangle()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Initializes a new instance of the Rectangle class.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#Rectangle-com.groupdocs.comparison.result.Rectangle-&#34;&gt;Rectangle(Rectangle other)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Creates a new Rectangle object that is a copy of the specified rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#Rectangle-double-double-double-double-&#34;&gt;Rectangle(double x, double y, double width, double height)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Creates a new instance of the Rectangle class with the specified x, y, width, and height.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getHeight--&#34;&gt;getHeight()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the height of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setHeight-double-&#34;&gt;setHeight(double value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the height of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getWidth--&#34;&gt;getWidth()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the width of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setWidth-double-&#34;&gt;setWidth(double value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the width of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getX--&#34;&gt;getX()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the x-coordinate of the top-left corner of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setX-double-&#34;&gt;setX(double value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the x-coordinate of the top-left corner of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getY--&#34;&gt;getY()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the y-coordinate of the top-left corner of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setY-double-&#34;&gt;setY(double value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the y-coordinate of the top-left corner of the rectangle.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#equals-java.lang.Object-&#34;&gt;equals(Object o)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;{@inheritDoc}&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#hashCode--&#34;&gt;hashCode()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;{@inheritDoc}&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toString--&#34;&gt;toString()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;{@inheritDoc}&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;Rectangle--&#34;&gt;Rectangle()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public Rectangle()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Initializes a new instance of the Rectangle class.&lt;/p&gt;
&lt;h3 id=&#34;Rectangle-com.groupdocs.comparison.result.Rectangle-&#34;&gt;Rectangle(Rectangle other)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public Rectangle(Rectangle other)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Creates a new Rectangle object that is a copy of the specified rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;other&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/rectangle&#34;&gt;Rectangle&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The rectangle to be copied&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;Rectangle-double-double-double-double-&#34;&gt;Rectangle(double x, double y, double width, double height)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public Rectangle(double x, double y, double width, double height)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Creates a new instance of the Rectangle class with the specified x, y, width, and height.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;x&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The x-coordinate of the top-left corner of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;y&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The y-coordinate of the top-left corner of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;width&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The width of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;height&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The height of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getHeight--&#34;&gt;getHeight()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public double getHeight()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the height of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
double - the height of the rectangle&lt;/p&gt;
&lt;h3 id=&#34;setHeight-double-&#34;&gt;setHeight(double value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setHeight(double value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the height of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The height of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getWidth--&#34;&gt;getWidth()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public double getWidth()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the width of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
double - the width of the rectangle&lt;/p&gt;
&lt;h3 id=&#34;setWidth-double-&#34;&gt;setWidth(double value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setWidth(double value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the width of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The width of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getX--&#34;&gt;getX()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public double getX()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the x-coordinate of the top-left corner of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
double - the x-coordinate of the top-left corner of the rectangle&lt;/p&gt;
&lt;h3 id=&#34;setX-double-&#34;&gt;setX(double value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setX(double value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the x-coordinate of the top-left corner of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The x-coordinate of the top-left corner of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getY--&#34;&gt;getY()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public double getY()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the y-coordinate of the top-left corner of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
double - the y-coordinate of the top-left corner of the rectangle&lt;/p&gt;
&lt;h3 id=&#34;setY-double-&#34;&gt;setY(double value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public void setY(double value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the y-coordinate of the top-left corner of the rectangle.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;double&lt;/td&gt;
&lt;td&gt;The y-coordinate of the top-left corner of the rectangle&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;equals-java.lang.Object-&#34;&gt;equals(Object o)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public boolean equals(Object o)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;o&lt;/td&gt;
&lt;td&gt;java.lang.Object&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
boolean&lt;/p&gt;
&lt;h3 id=&#34;hashCode--&#34;&gt;hashCode()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public int hashCode()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int&lt;/p&gt;
&lt;h3 id=&#34;toString--&#34;&gt;toString()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String toString()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: StyleChangeInfo</title>
      <link>/comparison/java/com.groupdocs.comparison.result/stylechangeinfo/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/stylechangeinfo/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public class StyleChangeInfo
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The StyleChangeInfo class represents information about a style change in a compared document.&lt;/p&gt;
&lt;p&gt;It provides details such as the changed property name, values before and after the change, and so on. Use this class to retrieve information about style changes during the document comparison process.&lt;/p&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
 try (Comparer comparer = new Comparer(sourceFile)) {
     comparer.add(targetFile);

     comparer.compare();
     final ChangeInfo[] changes = comparer.getChanges();
     for (ChangeInfo change : changes) {
         // Access the style change information
         final List styleChanges = change.getStyleChanges();
         for (StyleChangeInfo styleChange : styleChanges) {
             // Print the style change information
             System.out.println(&amp;#34;PropertyName: &amp;#34; + styleChange.getPropertyName());
             System.out.println(&amp;#34;OldValue: &amp;#34; + styleChange.getOldValue());
             System.out.println(&amp;#34;NewValue: &amp;#34; + styleChange.getNewValue());
         }
     }
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;constructors&#34;&gt;Constructors&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Constructor&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#StyleChangeInfo--&#34;&gt;StyleChangeInfo()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getPropertyName--&#34;&gt;getPropertyName()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the name of the property that was changed.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setPropertyName-java.lang.String-&#34;&gt;setPropertyName(String value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the name of the property that was changed.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getNewValue--&#34;&gt;getNewValue()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the new value of the property.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setNewValue-java.lang.Object-&#34;&gt;setNewValue(Object value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the new value of the property.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getOldValue--&#34;&gt;getOldValue()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the old value of the property.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#setOldValue-java.lang.Object-&#34;&gt;setOldValue(Object value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Sets the old value of the property.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#equals-java.lang.Object-&#34;&gt;equals(Object o)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;{@inheritDoc}&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#hashCode--&#34;&gt;hashCode()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;{@inheritDoc}&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;StyleChangeInfo--&#34;&gt;StyleChangeInfo()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public StyleChangeInfo()
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;getPropertyName--&#34;&gt;getPropertyName()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final String getPropertyName()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the name of the property that was changed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - the property name&lt;/p&gt;
&lt;h3 id=&#34;setPropertyName-java.lang.String-&#34;&gt;setPropertyName(String value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setPropertyName(String value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the name of the property that was changed.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;The property name&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getNewValue--&#34;&gt;getNewValue()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final Object getNewValue()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the new value of the property.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.Object - the new value of the property&lt;/p&gt;
&lt;h3 id=&#34;setNewValue-java.lang.Object-&#34;&gt;setNewValue(Object value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setNewValue(Object value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the new value of the property.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.Object&lt;/td&gt;
&lt;td&gt;The new value of the property&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;getOldValue--&#34;&gt;getOldValue()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final Object getOldValue()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the old value of the property.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.Object - the old value of the property&lt;/p&gt;
&lt;h3 id=&#34;setOldValue-java.lang.Object-&#34;&gt;setOldValue(Object value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public final void setOldValue(Object value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Sets the old value of the property.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.Object&lt;/td&gt;
&lt;td&gt;The old value of the property&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;equals-java.lang.Object-&#34;&gt;equals(Object o)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public boolean equals(Object o)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;o&lt;/td&gt;
&lt;td&gt;java.lang.Object&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
boolean&lt;/p&gt;
&lt;h3 id=&#34;hashCode--&#34;&gt;hashCode()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public int hashCode()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: ChangeType</title>
      <link>/comparison/java/com.groupdocs.comparison.result/changetype/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/changetype/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object, java.lang.Enum&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public enum ChangeType extends Enum&amp;lt;ChangeType&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The ChangeType enum represents the types of changes that can occur during the document comparison process.&lt;/p&gt;
&lt;p&gt;Each constant in this enum represents a specific type of change and provides a human-readable description and a numeric value.&lt;/p&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
 try (Comparer comparer = new Comparer(sourceFile)) {
     comparer.add(targetFile);
     comparer.compare();
     final ChangeInfo[] changes = comparer.getChanges();
     for (ChangeInfo changeInfo : changes) {
         // Get the ChangeType for a specific change
         final ChangeType changeType = changeInfo.getType();
         // Print the ChangeType information
         System.out.println(&amp;#34;Description: &amp;#34; + changeType.toString());
         System.out.println(&amp;#34;Value: &amp;#34; + changeType.toInt());
     }
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;fields&#34;&gt;Fields&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Field&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#NONE&#34;&gt;NONE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents no change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MODIFIED&#34;&gt;MODIFIED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a modified change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#INSERTED&#34;&gt;INSERTED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents an inserted change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DELETED&#34;&gt;DELETED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a deleted change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ADDED&#34;&gt;ADDED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents an added change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#NOT-MODIFIED&#34;&gt;NOT_MODIFIED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a not modified change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#STYLE-CHANGED&#34;&gt;STYLE_CHANGED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a style changed change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RESIZED&#34;&gt;RESIZED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a resized change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MOVED&#34;&gt;MOVED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a moved change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MOVED-AND-RESIZED&#34;&gt;MOVED_AND_RESIZED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a moved and resized change.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SHIFTED-AND-RESIZED&#34;&gt;SHIFTED_AND_RESIZED&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a shifted and resized change.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#values--&#34;&gt;values()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#valueOf-java.lang.String-&#34;&gt;valueOf(String name)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#fromString-java.lang.String-&#34;&gt;fromString(String toStringValue)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Parses string representation of ChangeType to get the enum constant.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#fromInt-int-&#34;&gt;fromInt(int intValue)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Creates new constant of enum ChangeType using provided numeric value.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toString--&#34;&gt;toString()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;String representation of ChangeType.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toInt--&#34;&gt;toInt()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Numeric representation of ChangeType.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;NONE&#34;&gt;NONE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType NONE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents no change.&lt;/p&gt;
&lt;h3 id=&#34;MODIFIED&#34;&gt;MODIFIED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType MODIFIED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a modified change.&lt;/p&gt;
&lt;h3 id=&#34;INSERTED&#34;&gt;INSERTED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType INSERTED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents an inserted change.&lt;/p&gt;
&lt;h3 id=&#34;DELETED&#34;&gt;DELETED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType DELETED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a deleted change.&lt;/p&gt;
&lt;h3 id=&#34;ADDED&#34;&gt;ADDED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType ADDED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents an added change.&lt;/p&gt;
&lt;h3 id=&#34;NOT-MODIFIED&#34;&gt;NOT_MODIFIED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType NOT_MODIFIED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a not modified change.&lt;/p&gt;
&lt;h3 id=&#34;STYLE-CHANGED&#34;&gt;STYLE_CHANGED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType STYLE_CHANGED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a style changed change.&lt;/p&gt;
&lt;h3 id=&#34;RESIZED&#34;&gt;RESIZED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType RESIZED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a resized change.&lt;/p&gt;
&lt;h3 id=&#34;MOVED&#34;&gt;MOVED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType MOVED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a moved change.&lt;/p&gt;
&lt;h3 id=&#34;MOVED-AND-RESIZED&#34;&gt;MOVED_AND_RESIZED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType MOVED_AND_RESIZED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a moved and resized change.&lt;/p&gt;
&lt;h3 id=&#34;SHIFTED-AND-RESIZED&#34;&gt;SHIFTED_AND_RESIZED&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ChangeType SHIFTED_AND_RESIZED
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a shifted and resized change.&lt;/p&gt;
&lt;h3 id=&#34;values--&#34;&gt;values()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ChangeType[] values()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
com.groupdocs.comparison.result.ChangeType[]&lt;/p&gt;
&lt;h3 id=&#34;valueOf-java.lang.String-&#34;&gt;valueOf(String name)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ChangeType valueOf(String name)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;name&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/changetype&#34;&gt;ChangeType&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;fromString-java.lang.String-&#34;&gt;fromString(String toStringValue)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ChangeType fromString(String toStringValue)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Parses string representation of ChangeType to get the enum constant.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;toStringValue&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;The string representation of ChangeType&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/changetype&#34;&gt;ChangeType&lt;/a&gt; - ChangeType enum constant associated with input string&lt;/p&gt;
&lt;h3 id=&#34;fromInt-int-&#34;&gt;fromInt(int intValue)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ChangeType fromInt(int intValue)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Creates new constant of enum ChangeType using provided numeric value.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;intValue&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The numeric representation of ChangeType&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/changetype&#34;&gt;ChangeType&lt;/a&gt; - ChangeType enum constant associated with numeric value&lt;/p&gt;
&lt;h3 id=&#34;toString--&#34;&gt;toString()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String toString()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;String representation of ChangeType.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - string value of enum constant&lt;/p&gt;
&lt;h3 id=&#34;toInt--&#34;&gt;toInt()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public int toInt()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Numeric representation of ChangeType.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int - numeric value of enum constant&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: ComparisonAction</title>
      <link>/comparison/java/com.groupdocs.comparison.result/comparisonaction/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/comparisonaction/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object, java.lang.Enum&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public enum ComparisonAction extends Enum&amp;lt;ComparisonAction&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The ComparisonAction enum represents the actions that can be applied to a change during the document comparison process.&lt;/p&gt;
&lt;p&gt;Each constant in this enum represents a specific action and provides a human-readable description and a numeric value.&lt;/p&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
 try (Comparer comparer = new Comparer(sourceFile)) {
     comparer.add(targetFile);
     comparer.compare();

     final ChangeInfo[] changes = comparer.getChanges();
     for (ChangeInfo changeInfo : changes) {
         if (changeInfo.getId() % 2 == 0) {
             changeInfo.setComparisonAction(ComparisonAction.REJECT);
         }
     }
     comparer.applyChanges(resultFile, changes);
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;fields&#34;&gt;Fields&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Field&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#NONE&#34;&gt;NONE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents no action.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ACCEPT&#34;&gt;ACCEPT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents an accept action.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#REJECT&#34;&gt;REJECT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Represents a reject action.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#values--&#34;&gt;values()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#valueOf-java.lang.String-&#34;&gt;valueOf(String name)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#fromString-java.lang.String-&#34;&gt;fromString(String toStringValue)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Parses string representation of ComparisonAction to get the enum constant.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#fromInt-int-&#34;&gt;fromInt(int intValue)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Creates new constant of enum ComparisonAction using provided numeric value.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toString--&#34;&gt;toString()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;String representation of ComparisonAction.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toInt--&#34;&gt;toInt()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Numeric representation of ComparisonAction.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;NONE&#34;&gt;NONE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ComparisonAction NONE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents no action. The change will have no effect.&lt;/p&gt;
&lt;h3 id=&#34;ACCEPT&#34;&gt;ACCEPT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ComparisonAction ACCEPT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents an accept action. The change will be visible in the result file.&lt;/p&gt;
&lt;h3 id=&#34;REJECT&#34;&gt;REJECT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final ComparisonAction REJECT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Represents a reject action. The change will be invisible in the result file.&lt;/p&gt;
&lt;h3 id=&#34;values--&#34;&gt;values()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ComparisonAction[] values()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
com.groupdocs.comparison.result.ComparisonAction[]&lt;/p&gt;
&lt;h3 id=&#34;valueOf-java.lang.String-&#34;&gt;valueOf(String name)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ComparisonAction valueOf(String name)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;name&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction&#34;&gt;ComparisonAction&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;fromString-java.lang.String-&#34;&gt;fromString(String toStringValue)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ComparisonAction fromString(String toStringValue)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Parses string representation of ComparisonAction to get the enum constant.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;toStringValue&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;The string representation of ComparisonAction&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction&#34;&gt;ComparisonAction&lt;/a&gt; - ComparisonAction enum constant associated with input string&lt;/p&gt;
&lt;h3 id=&#34;fromInt-int-&#34;&gt;fromInt(int intValue)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static ComparisonAction fromInt(int intValue)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Creates new constant of enum ComparisonAction using provided numeric value.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;intValue&lt;/td&gt;
&lt;td&gt;int&lt;/td&gt;
&lt;td&gt;The numeric representation of ComparisonAction&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/comparisonaction&#34;&gt;ComparisonAction&lt;/a&gt; - ComparisonAction enum constant associated with numeric value&lt;/p&gt;
&lt;h3 id=&#34;toString--&#34;&gt;toString()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String toString()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;String representation of ComparisonAction.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - string value of enum constant&lt;/p&gt;
&lt;h3 id=&#34;toInt--&#34;&gt;toInt()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public int toInt()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Numeric representation of ComparisonAction.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
int - numeric value of enum constant&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Java: FileType</title>
      <link>/comparison/java/com.groupdocs.comparison.result/filetype/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/comparison/java/com.groupdocs.comparison.result/filetype/</guid>
      <description>
        
        
        &lt;p&gt;&lt;strong&gt;Inheritance:&lt;/strong&gt;
java.lang.Object, java.lang.Enum&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;All Implemented Interfaces:&lt;/strong&gt;
com.aspose.ms.System.IEquatable&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public enum FileType extends Enum&amp;lt;FileType&amp;gt; implements System.IEquatable&amp;lt;FileType&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The FileType enum represents the type of a file used in the document comparison process.&lt;/p&gt;
&lt;p&gt;It defines different file types such as Word documents, PDF files, and more. Provides methods to obtain list of all file types supported by GroupDocs.Comparison, detect file type by extension etc. Use this enum to specify the file type when working with the GroupDocs.Comparison library.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Learn more about file formats supported by GroupDocs.Comparison: &lt;a href=&#34;https://docs.groupdocs.com/display/comparisonjava/Supported+Document+Formats&#34;&gt;Full list of supported document formats&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Learn more about getting supported file types in Java: &lt;a href=&#34;https://docs.groupdocs.com/display/comparisonjava/Get+supported+file+formats&#34;&gt;How to get supported file formats in Java&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Example usage:&lt;/p&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;
  // Set the file type to Word document
  final FileType fileType = FileType.DOCX;
  // Perform comparison using the specified file type
  final LoadOptions loadOptions = new LoadOptions(fileType);
  try (Comparer comparer = new Comparer(sourceFile, loadOptions)) {
      comparer.add(targetFile);

      comparer.compare(resultFile, compareOptions);
 }
 
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;fields&#34;&gt;Fields&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Field&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#UNKNOWN&#34;&gt;UNKNOWN&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Unknown type&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#AS&#34;&gt;AS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;ActionScript Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#AS3&#34;&gt;AS3&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;ActionScript Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ASM&#34;&gt;ASM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Assembler Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#BAT&#34;&gt;BAT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Script file in DOS, OS/2 and Microsoft Windows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CMD&#34;&gt;CMD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Script file in DOS, OS/2 and Microsoft Windows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#C&#34;&gt;C&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;C-Based Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#H&#34;&gt;H&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;C-Based header files contain definitions of Functions and Variables&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PDF&#34;&gt;PDF&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Adobe Portable Document format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DOC&#34;&gt;DOC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Word 97-2003 Document&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DOCM&#34;&gt;DOCM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Word Macro-Enabled Document&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DOCX&#34;&gt;DOCX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Word Document&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DOT&#34;&gt;DOT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Word 97-2003 Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DOTM&#34;&gt;DOTM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Word Macro-Enabled Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DOTX&#34;&gt;DOTX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Word Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#XLS&#34;&gt;XLS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Excel 97-2003 Worksheet&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#XLT&#34;&gt;XLT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Excel template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#XLSX&#34;&gt;XLSX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Excel Worksheet&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#XLTM&#34;&gt;XLTM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Excel macro-enabled template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#XLSB&#34;&gt;XLSB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Excel Binary Worksheet&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#XLSM&#34;&gt;XLSM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Excel Macro-Enabled Worksheet&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#POT&#34;&gt;POT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#POTX&#34;&gt;POTX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#POTM&#34;&gt;POTM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint Template with support for Macros&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PPS&#34;&gt;PPS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint 97-2003 Slide Show&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PPSX&#34;&gt;PPSX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint Slide Show&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PPTX&#34;&gt;PPTX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint Presentation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PPT&#34;&gt;PPT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint 97-2003 Presentation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PPTM&#34;&gt;PPTM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint Macro-Enabled Presentation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PPSM&#34;&gt;PPSM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft PowerPoint Macro-Enabled Slide Show Presentation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#VSDX&#34;&gt;VSDX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Visio Drawing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#VSD&#34;&gt;VSD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Visio 2003-2010 Drawing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#VSS&#34;&gt;VSS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Visio 2003-2010 Stencil&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#VST&#34;&gt;VST&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Visio 2003-2010 Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#VDX&#34;&gt;VDX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Visio 2003-2010 XML Drawing&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ONE&#34;&gt;ONE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft OneNote Document&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ODT&#34;&gt;ODT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;OpenDocument Text&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ODP&#34;&gt;ODP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;OpenDocument Presentation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#OTP&#34;&gt;OTP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;OpenDocument Presentation Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ODS&#34;&gt;ODS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;OpenDocument Spreadsheet&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#OTT&#34;&gt;OTT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;OpenDocument Text Template&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RTF&#34;&gt;RTF&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Rich Text Document&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#TXT&#34;&gt;TXT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Plain Text Document&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CSV&#34;&gt;CSV&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Comma Separated Values File&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#HTML&#34;&gt;HTML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;HyperText Markup Language&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MHTML&#34;&gt;MHTML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Mime HTML&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MOBI&#34;&gt;MOBI&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Mobipocket e-book format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DCM&#34;&gt;DCM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Digital Imaging and Communications in Medicine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DJVU&#34;&gt;DJVU&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Deja Vu format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DWG&#34;&gt;DWG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Autodesk Design Data Formats&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DXF&#34;&gt;DXF&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;AutoCAD Drawing Interchange&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#BMP&#34;&gt;BMP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Bitmap Picture&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GIF&#34;&gt;GIF&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Graphics Interchange Format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JPEG&#34;&gt;JPEG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Joint Photographic Experts Group&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JPG&#34;&gt;JPG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Joint Photographic Experts Group&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PNG&#34;&gt;PNG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Portable Network Graphics&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SVG&#34;&gt;SVG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Scalar Vector Graphics&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#EML&#34;&gt;EML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;E-mail Message&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#EMLX&#34;&gt;EMLX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Apple Mail E-mail File&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MSG&#34;&gt;MSG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Microsoft Outlook E-mail Message&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CAD&#34;&gt;CAD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;CAD file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CPP&#34;&gt;CPP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;C-Based Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CC&#34;&gt;CC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;C-Based Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CXX&#34;&gt;CXX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;C-Based Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#HXX&#34;&gt;HXX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Header Files that are written in the C++ programming language&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#HH&#34;&gt;HH&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Header information referenced by a C++ source code file&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#HPP&#34;&gt;HPP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Header Files that are written in the C++ programming language&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CMAKE&#34;&gt;CMAKE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Tool for managing the build process of software&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CS&#34;&gt;CS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;CSharp Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CSX&#34;&gt;CSX&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;CSharp script file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CAKE&#34;&gt;CAKE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;CSharp cross-platform build automation system format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DIFF&#34;&gt;DIFF&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Data comparison tool format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PATCH&#34;&gt;PATCH&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;List of differences format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#REJ&#34;&gt;REJ&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Rejected files format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GROOVY&#34;&gt;GROOVY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Source code file written in Groovy format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GVY&#34;&gt;GVY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Source code file written in Groovy format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GRADLE&#34;&gt;GRADLE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Build-automation system format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#HAML&#34;&gt;HAML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markup language for simplified HTML generation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JS&#34;&gt;JS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;JavaScript Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ES6&#34;&gt;ES6&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;JavaScript standardised scripting language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MJS&#34;&gt;MJS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Extension for EcmaScript (ES) module files&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PAC&#34;&gt;PAC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Proxy Auto-Configuration file for JavaScript function format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JSON&#34;&gt;JSON&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Lightweight format for storing and transporting data&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#BOWERRC&#34;&gt;BOWERRC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Configuration file for package control on the server-side&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JSHINTRC&#34;&gt;JSHINTRC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;JavaScript code quality tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JSCSRC&#34;&gt;JSCSRC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;JavaScript configuration file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#WEBMANIFEST&#34;&gt;WEBMANIFEST&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Manifest file includes information about the app&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JSMAP&#34;&gt;JSMAP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;JSON file that contains information on how to translate code back to source code&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#HAR&#34;&gt;HAR&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;The HTTP Archive format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#JAVA&#34;&gt;JAVA&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Java Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#LESS&#34;&gt;LESS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Dynamic preprocessor style sheet language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#LOG&#34;&gt;LOG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Logging keeps a registry of events, processes, messages and communication&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MAKE&#34;&gt;MAKE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Makefile is a file containing a set of directives used by a make build automation tool to generate a target/goal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MK&#34;&gt;MK&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Makefile is a file containing a set of directives used by a make build automation tool to generate a target/goal&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MD&#34;&gt;MD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MKD&#34;&gt;MKD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MDWN&#34;&gt;MDWN&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MDOWN&#34;&gt;MDOWN&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MARKDOWN&#34;&gt;MARKDOWN&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MARKDN&#34;&gt;MARKDN&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MDTXT&#34;&gt;MDTXT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MDTEXT&#34;&gt;MDTEXT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Markdown Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ML&#34;&gt;ML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Caml Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#MLI&#34;&gt;MLI&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Caml Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#OBJC&#34;&gt;OBJC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Objective-C Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#OBJCP&#34;&gt;OBJCP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Objective-C++ Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PHP&#34;&gt;PHP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;PHP Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PHP4&#34;&gt;PHP4&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;PHP Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PHP5&#34;&gt;PHP5&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;PHP Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PHTML&#34;&gt;PHTML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Standard file extension for PHP 2 programs format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CTP&#34;&gt;CTP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;CakePHP Template format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PL&#34;&gt;PL&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PM&#34;&gt;PM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl module format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#POD&#34;&gt;POD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl lightweight markup language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#T&#34;&gt;T&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl test file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PSGI&#34;&gt;PSGI&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Interface between web servers and web applications and frameworks written in the Perl programming&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#P6&#34;&gt;P6&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PL6&#34;&gt;PL6&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PM6&#34;&gt;PM6&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Perl module format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#NQP&#34;&gt;NQP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Intermediate language used to build the Rakudo Perl 6 compiler&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PROP&#34;&gt;PROP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Properties file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CFG&#34;&gt;CFG&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Configuration file used for storing settings&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CONF&#34;&gt;CONF&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Configuration file used on Unix and Linux based systems&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DIR&#34;&gt;DIR&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Directory is a location for storing files on computer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PY&#34;&gt;PY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Python Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RPY&#34;&gt;RPY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Python-based file engine to create and run games&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PYW&#34;&gt;PYW&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Files used in Windows to indicate a script needs to be run&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#CPY&#34;&gt;CPY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Controller Python Script format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GYP&#34;&gt;GYP&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Build automation tool format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GYPI&#34;&gt;GYPI&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Build automation tool format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PYI&#34;&gt;PYI&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Python Interface file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#IPY&#34;&gt;IPY&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;IPython Script format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RST&#34;&gt;RST&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Lightweight markup language&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RB&#34;&gt;RB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ruby Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#ERB&#34;&gt;ERB&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ruby Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RJS&#34;&gt;RJS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ruby Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#GEMSPEC&#34;&gt;GEMSPEC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Developer file that specifies the attributes of a RubyGems&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RAKE&#34;&gt;RAKE&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ruby build automation tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RU&#34;&gt;RU&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Rack configuration file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#PODSPEC&#34;&gt;PODSPEC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ruby build settings format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#RBI&#34;&gt;RBI&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Ruby Interface file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SASS&#34;&gt;SASS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Style sheet language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SCSS&#34;&gt;SCSS&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Style sheet language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SCALA&#34;&gt;SCALA&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Scala Programming Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SBT&#34;&gt;SBT&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;SBT build tool for Scala format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SC&#34;&gt;SC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Scala worksheet format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SH&#34;&gt;SH&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Script programmed for bash format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#BASH&#34;&gt;BASH&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Type of interpreter that processes shell commands&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#BASHRC&#34;&gt;BASHRC&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;File determines the behavior of interactive shells&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#EBUILD&#34;&gt;EBUILD&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Specialized bash script which automates compilation and installation procedures for software packages&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#SQL&#34;&gt;SQL&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Structured Query Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#DSQL&#34;&gt;DSQL&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Dynamic Structured Query Language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#VIM&#34;&gt;VIM&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Vim source code file format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#YAML&#34;&gt;YAML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Human-readable data-serialization language format&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#YML&#34;&gt;YML&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Human-readable data-serialization language format&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;methods&#34;&gt;Methods&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Method&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#values--&#34;&gt;values()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#valueOf-java.lang.String-&#34;&gt;valueOf(String name)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#fromFileNameOrExtension-java.lang.String-&#34;&gt;fromFileNameOrExtension(String value)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Return FileType based on file name or extension&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getSupportedFileTypes--&#34;&gt;getSupportedFileTypes()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets list of supported file types&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#areEquals-com.groupdocs.comparison.result.FileType-com.groupdocs.comparison.result.FileType-&#34;&gt;areEquals(FileType left, FileType right)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Checks the equality of provided file types&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#areNotEquals-com.groupdocs.comparison.result.FileType-com.groupdocs.comparison.result.FileType-&#34;&gt;areNotEquals(FileType left, FileType right)&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Checks are provided file types not equals&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getFileFormat--&#34;&gt;getFileFormat()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets text description of the file type&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#getExtension--&#34;&gt;getExtension()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets the extension of the file type&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href=&#34;#toString--&#34;&gt;toString()&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Gets string representation of &lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;, for example  &amp;lsquo;PHP Programming Language format (.php)&amp;rsquo;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;UNKNOWN&#34;&gt;UNKNOWN&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType UNKNOWN
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Unknown type&lt;/p&gt;
&lt;h3 id=&#34;AS&#34;&gt;AS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType AS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;ActionScript Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;AS3&#34;&gt;AS3&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType AS3
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;ActionScript Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;ASM&#34;&gt;ASM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ASM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Assembler Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;BAT&#34;&gt;BAT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType BAT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Script file in DOS, OS/2 and Microsoft Windows&lt;/p&gt;
&lt;h3 id=&#34;CMD&#34;&gt;CMD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CMD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Script file in DOS, OS/2 and Microsoft Windows&lt;/p&gt;
&lt;h3 id=&#34;C&#34;&gt;C&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType C
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;C-Based Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;H&#34;&gt;H&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType H
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;C-Based header files contain definitions of Functions and Variables&lt;/p&gt;
&lt;h3 id=&#34;PDF&#34;&gt;PDF&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PDF
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Adobe Portable Document format&lt;/p&gt;
&lt;h3 id=&#34;DOC&#34;&gt;DOC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DOC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Word 97-2003 Document&lt;/p&gt;
&lt;h3 id=&#34;DOCM&#34;&gt;DOCM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DOCM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Word Macro-Enabled Document&lt;/p&gt;
&lt;h3 id=&#34;DOCX&#34;&gt;DOCX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DOCX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Word Document&lt;/p&gt;
&lt;h3 id=&#34;DOT&#34;&gt;DOT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DOT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Word 97-2003 Template&lt;/p&gt;
&lt;h3 id=&#34;DOTM&#34;&gt;DOTM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DOTM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Word Macro-Enabled Template&lt;/p&gt;
&lt;h3 id=&#34;DOTX&#34;&gt;DOTX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DOTX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Word Template&lt;/p&gt;
&lt;h3 id=&#34;XLS&#34;&gt;XLS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType XLS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Excel 97-2003 Worksheet&lt;/p&gt;
&lt;h3 id=&#34;XLT&#34;&gt;XLT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType XLT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Excel template&lt;/p&gt;
&lt;h3 id=&#34;XLSX&#34;&gt;XLSX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType XLSX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Excel Worksheet&lt;/p&gt;
&lt;h3 id=&#34;XLTM&#34;&gt;XLTM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType XLTM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Excel macro-enabled template&lt;/p&gt;
&lt;h3 id=&#34;XLSB&#34;&gt;XLSB&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType XLSB
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Excel Binary Worksheet&lt;/p&gt;
&lt;h3 id=&#34;XLSM&#34;&gt;XLSM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType XLSM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Excel Macro-Enabled Worksheet&lt;/p&gt;
&lt;h3 id=&#34;POT&#34;&gt;POT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType POT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint template&lt;/p&gt;
&lt;h3 id=&#34;POTX&#34;&gt;POTX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType POTX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint Template&lt;/p&gt;
&lt;h3 id=&#34;POTM&#34;&gt;POTM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType POTM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint Template with support for Macros&lt;/p&gt;
&lt;h3 id=&#34;PPS&#34;&gt;PPS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PPS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint 97-2003 Slide Show&lt;/p&gt;
&lt;h3 id=&#34;PPSX&#34;&gt;PPSX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PPSX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint Slide Show&lt;/p&gt;
&lt;h3 id=&#34;PPTX&#34;&gt;PPTX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PPTX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint Presentation&lt;/p&gt;
&lt;h3 id=&#34;PPT&#34;&gt;PPT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PPT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint 97-2003 Presentation&lt;/p&gt;
&lt;h3 id=&#34;PPTM&#34;&gt;PPTM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PPTM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint Macro-Enabled Presentation&lt;/p&gt;
&lt;h3 id=&#34;PPSM&#34;&gt;PPSM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PPSM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft PowerPoint Macro-Enabled Slide Show Presentation&lt;/p&gt;
&lt;h3 id=&#34;VSDX&#34;&gt;VSDX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType VSDX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Visio Drawing&lt;/p&gt;
&lt;h3 id=&#34;VSD&#34;&gt;VSD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType VSD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Visio 2003-2010 Drawing&lt;/p&gt;
&lt;h3 id=&#34;VSS&#34;&gt;VSS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType VSS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Visio 2003-2010 Stencil&lt;/p&gt;
&lt;h3 id=&#34;VST&#34;&gt;VST&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType VST
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Visio 2003-2010 Template&lt;/p&gt;
&lt;h3 id=&#34;VDX&#34;&gt;VDX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType VDX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Visio 2003-2010 XML Drawing&lt;/p&gt;
&lt;h3 id=&#34;ONE&#34;&gt;ONE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ONE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft OneNote Document&lt;/p&gt;
&lt;h3 id=&#34;ODT&#34;&gt;ODT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ODT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;OpenDocument Text&lt;/p&gt;
&lt;h3 id=&#34;ODP&#34;&gt;ODP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ODP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;OpenDocument Presentation&lt;/p&gt;
&lt;h3 id=&#34;OTP&#34;&gt;OTP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType OTP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;OpenDocument Presentation Template&lt;/p&gt;
&lt;h3 id=&#34;ODS&#34;&gt;ODS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ODS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;OpenDocument Spreadsheet&lt;/p&gt;
&lt;h3 id=&#34;OTT&#34;&gt;OTT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType OTT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;OpenDocument Text Template&lt;/p&gt;
&lt;h3 id=&#34;RTF&#34;&gt;RTF&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RTF
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Rich Text Document&lt;/p&gt;
&lt;h3 id=&#34;TXT&#34;&gt;TXT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType TXT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Plain Text Document&lt;/p&gt;
&lt;h3 id=&#34;CSV&#34;&gt;CSV&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CSV
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Comma Separated Values File&lt;/p&gt;
&lt;h3 id=&#34;HTML&#34;&gt;HTML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType HTML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;HyperText Markup Language&lt;/p&gt;
&lt;h3 id=&#34;MHTML&#34;&gt;MHTML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MHTML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Mime HTML&lt;/p&gt;
&lt;h3 id=&#34;MOBI&#34;&gt;MOBI&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MOBI
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Mobipocket e-book format&lt;/p&gt;
&lt;h3 id=&#34;DCM&#34;&gt;DCM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DCM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Digital Imaging and Communications in Medicine&lt;/p&gt;
&lt;h3 id=&#34;DJVU&#34;&gt;DJVU&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DJVU
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Deja Vu format&lt;/p&gt;
&lt;h3 id=&#34;DWG&#34;&gt;DWG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DWG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Autodesk Design Data Formats&lt;/p&gt;
&lt;h3 id=&#34;DXF&#34;&gt;DXF&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DXF
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;AutoCAD Drawing Interchange&lt;/p&gt;
&lt;h3 id=&#34;BMP&#34;&gt;BMP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType BMP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Bitmap Picture&lt;/p&gt;
&lt;h3 id=&#34;GIF&#34;&gt;GIF&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GIF
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Graphics Interchange Format&lt;/p&gt;
&lt;h3 id=&#34;JPEG&#34;&gt;JPEG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JPEG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Joint Photographic Experts Group&lt;/p&gt;
&lt;h3 id=&#34;JPG&#34;&gt;JPG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JPG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Joint Photographic Experts Group&lt;/p&gt;
&lt;h3 id=&#34;PNG&#34;&gt;PNG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PNG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Portable Network Graphics&lt;/p&gt;
&lt;h3 id=&#34;SVG&#34;&gt;SVG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SVG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Scalar Vector Graphics&lt;/p&gt;
&lt;h3 id=&#34;EML&#34;&gt;EML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType EML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;E-mail Message&lt;/p&gt;
&lt;h3 id=&#34;EMLX&#34;&gt;EMLX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType EMLX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Apple Mail E-mail File&lt;/p&gt;
&lt;h3 id=&#34;MSG&#34;&gt;MSG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MSG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Microsoft Outlook E-mail Message&lt;/p&gt;
&lt;h3 id=&#34;CAD&#34;&gt;CAD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CAD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;CAD file format&lt;/p&gt;
&lt;h3 id=&#34;CPP&#34;&gt;CPP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CPP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;C-Based Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;CC&#34;&gt;CC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;C-Based Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;CXX&#34;&gt;CXX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CXX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;C-Based Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;HXX&#34;&gt;HXX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType HXX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Header Files that are written in the C++ programming language&lt;/p&gt;
&lt;h3 id=&#34;HH&#34;&gt;HH&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType HH
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Header information referenced by a C++ source code file&lt;/p&gt;
&lt;h3 id=&#34;HPP&#34;&gt;HPP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType HPP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Header Files that are written in the C++ programming language&lt;/p&gt;
&lt;h3 id=&#34;CMAKE&#34;&gt;CMAKE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CMAKE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Tool for managing the build process of software&lt;/p&gt;
&lt;h3 id=&#34;CS&#34;&gt;CS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;CSharp Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;CSX&#34;&gt;CSX&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CSX
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;CSharp script file format&lt;/p&gt;
&lt;h3 id=&#34;CAKE&#34;&gt;CAKE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CAKE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;CSharp cross-platform build automation system format&lt;/p&gt;
&lt;h3 id=&#34;DIFF&#34;&gt;DIFF&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DIFF
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Data comparison tool format&lt;/p&gt;
&lt;h3 id=&#34;PATCH&#34;&gt;PATCH&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PATCH
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;List of differences format&lt;/p&gt;
&lt;h3 id=&#34;REJ&#34;&gt;REJ&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType REJ
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Rejected files format&lt;/p&gt;
&lt;h3 id=&#34;GROOVY&#34;&gt;GROOVY&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GROOVY
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Source code file written in Groovy format&lt;/p&gt;
&lt;h3 id=&#34;GVY&#34;&gt;GVY&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GVY
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Source code file written in Groovy format&lt;/p&gt;
&lt;h3 id=&#34;GRADLE&#34;&gt;GRADLE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GRADLE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Build-automation system format&lt;/p&gt;
&lt;h3 id=&#34;HAML&#34;&gt;HAML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType HAML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markup language for simplified HTML generation&lt;/p&gt;
&lt;h3 id=&#34;JS&#34;&gt;JS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;JavaScript Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;ES6&#34;&gt;ES6&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ES6
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;JavaScript standardised scripting language format&lt;/p&gt;
&lt;h3 id=&#34;MJS&#34;&gt;MJS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MJS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Extension for EcmaScript (ES) module files&lt;/p&gt;
&lt;h3 id=&#34;PAC&#34;&gt;PAC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PAC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Proxy Auto-Configuration file for JavaScript function format&lt;/p&gt;
&lt;h3 id=&#34;JSON&#34;&gt;JSON&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JSON
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Lightweight format for storing and transporting data&lt;/p&gt;
&lt;h3 id=&#34;BOWERRC&#34;&gt;BOWERRC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType BOWERRC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Configuration file for package control on the server-side&lt;/p&gt;
&lt;h3 id=&#34;JSHINTRC&#34;&gt;JSHINTRC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JSHINTRC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;JavaScript code quality tool&lt;/p&gt;
&lt;h3 id=&#34;JSCSRC&#34;&gt;JSCSRC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JSCSRC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;JavaScript configuration file format&lt;/p&gt;
&lt;h3 id=&#34;WEBMANIFEST&#34;&gt;WEBMANIFEST&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType WEBMANIFEST
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Manifest file includes information about the app&lt;/p&gt;
&lt;h3 id=&#34;JSMAP&#34;&gt;JSMAP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JSMAP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;JSON file that contains information on how to translate code back to source code&lt;/p&gt;
&lt;h3 id=&#34;HAR&#34;&gt;HAR&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType HAR
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The HTTP Archive format&lt;/p&gt;
&lt;h3 id=&#34;JAVA&#34;&gt;JAVA&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType JAVA
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Java Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;LESS&#34;&gt;LESS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType LESS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Dynamic preprocessor style sheet language format&lt;/p&gt;
&lt;h3 id=&#34;LOG&#34;&gt;LOG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType LOG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Logging keeps a registry of events, processes, messages and communication&lt;/p&gt;
&lt;h3 id=&#34;MAKE&#34;&gt;MAKE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MAKE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Makefile is a file containing a set of directives used by a make build automation tool to generate a target/goal&lt;/p&gt;
&lt;h3 id=&#34;MK&#34;&gt;MK&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MK
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Makefile is a file containing a set of directives used by a make build automation tool to generate a target/goal&lt;/p&gt;
&lt;h3 id=&#34;MD&#34;&gt;MD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MKD&#34;&gt;MKD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MKD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MDWN&#34;&gt;MDWN&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MDWN
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MDOWN&#34;&gt;MDOWN&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MDOWN
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MARKDOWN&#34;&gt;MARKDOWN&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MARKDOWN
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MARKDN&#34;&gt;MARKDN&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MARKDN
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MDTXT&#34;&gt;MDTXT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MDTXT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;MDTEXT&#34;&gt;MDTEXT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MDTEXT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Markdown Language format&lt;/p&gt;
&lt;h3 id=&#34;ML&#34;&gt;ML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Caml Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;MLI&#34;&gt;MLI&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType MLI
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Caml Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;OBJC&#34;&gt;OBJC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType OBJC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Objective-C Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;OBJCP&#34;&gt;OBJCP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType OBJCP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Objective-C++ Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PHP&#34;&gt;PHP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PHP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;PHP Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PHP4&#34;&gt;PHP4&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PHP4
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;PHP Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PHP5&#34;&gt;PHP5&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PHP5
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;PHP Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PHTML&#34;&gt;PHTML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PHTML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Standard file extension for PHP 2 programs format&lt;/p&gt;
&lt;h3 id=&#34;CTP&#34;&gt;CTP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CTP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;CakePHP Template format&lt;/p&gt;
&lt;h3 id=&#34;PL&#34;&gt;PL&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PL
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PM&#34;&gt;PM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl module format&lt;/p&gt;
&lt;h3 id=&#34;POD&#34;&gt;POD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType POD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl lightweight markup language format&lt;/p&gt;
&lt;h3 id=&#34;T&#34;&gt;T&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType T
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl test file format&lt;/p&gt;
&lt;h3 id=&#34;PSGI&#34;&gt;PSGI&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PSGI
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Interface between web servers and web applications and frameworks written in the Perl programming&lt;/p&gt;
&lt;h3 id=&#34;P6&#34;&gt;P6&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType P6
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PL6&#34;&gt;PL6&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PL6
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;PM6&#34;&gt;PM6&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PM6
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Perl module format&lt;/p&gt;
&lt;h3 id=&#34;NQP&#34;&gt;NQP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType NQP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Intermediate language used to build the Rakudo Perl 6 compiler&lt;/p&gt;
&lt;h3 id=&#34;PROP&#34;&gt;PROP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PROP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Properties file format&lt;/p&gt;
&lt;h3 id=&#34;CFG&#34;&gt;CFG&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CFG
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Configuration file used for storing settings&lt;/p&gt;
&lt;h3 id=&#34;CONF&#34;&gt;CONF&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CONF
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Configuration file used on Unix and Linux based systems&lt;/p&gt;
&lt;h3 id=&#34;DIR&#34;&gt;DIR&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DIR
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Directory is a location for storing files on computer&lt;/p&gt;
&lt;h3 id=&#34;PY&#34;&gt;PY&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PY
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Python Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;RPY&#34;&gt;RPY&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RPY
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Python-based file engine to create and run games&lt;/p&gt;
&lt;h3 id=&#34;PYW&#34;&gt;PYW&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PYW
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Files used in Windows to indicate a script needs to be run&lt;/p&gt;
&lt;h3 id=&#34;CPY&#34;&gt;CPY&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType CPY
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Controller Python Script format&lt;/p&gt;
&lt;h3 id=&#34;GYP&#34;&gt;GYP&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GYP
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Build automation tool format&lt;/p&gt;
&lt;h3 id=&#34;GYPI&#34;&gt;GYPI&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GYPI
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Build automation tool format&lt;/p&gt;
&lt;h3 id=&#34;PYI&#34;&gt;PYI&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PYI
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Python Interface file format&lt;/p&gt;
&lt;h3 id=&#34;IPY&#34;&gt;IPY&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType IPY
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;IPython Script format&lt;/p&gt;
&lt;h3 id=&#34;RST&#34;&gt;RST&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RST
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Lightweight markup language&lt;/p&gt;
&lt;h3 id=&#34;RB&#34;&gt;RB&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RB
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ruby Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;ERB&#34;&gt;ERB&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType ERB
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ruby Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;RJS&#34;&gt;RJS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RJS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ruby Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;GEMSPEC&#34;&gt;GEMSPEC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType GEMSPEC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Developer file that specifies the attributes of a RubyGems&lt;/p&gt;
&lt;h3 id=&#34;RAKE&#34;&gt;RAKE&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RAKE
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ruby build automation tool&lt;/p&gt;
&lt;h3 id=&#34;RU&#34;&gt;RU&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RU
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Rack configuration file format&lt;/p&gt;
&lt;h3 id=&#34;PODSPEC&#34;&gt;PODSPEC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType PODSPEC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ruby build settings format&lt;/p&gt;
&lt;h3 id=&#34;RBI&#34;&gt;RBI&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType RBI
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ruby Interface file format&lt;/p&gt;
&lt;h3 id=&#34;SASS&#34;&gt;SASS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SASS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Style sheet language format&lt;/p&gt;
&lt;h3 id=&#34;SCSS&#34;&gt;SCSS&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SCSS
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Style sheet language format&lt;/p&gt;
&lt;h3 id=&#34;SCALA&#34;&gt;SCALA&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SCALA
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Scala Programming Language format&lt;/p&gt;
&lt;h3 id=&#34;SBT&#34;&gt;SBT&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SBT
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;SBT build tool for Scala format&lt;/p&gt;
&lt;h3 id=&#34;SC&#34;&gt;SC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Scala worksheet format&lt;/p&gt;
&lt;h3 id=&#34;SH&#34;&gt;SH&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SH
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Script programmed for bash format&lt;/p&gt;
&lt;h3 id=&#34;BASH&#34;&gt;BASH&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType BASH
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Type of interpreter that processes shell commands&lt;/p&gt;
&lt;h3 id=&#34;BASHRC&#34;&gt;BASHRC&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType BASHRC
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;File determines the behavior of interactive shells&lt;/p&gt;
&lt;h3 id=&#34;EBUILD&#34;&gt;EBUILD&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType EBUILD
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Specialized bash script which automates compilation and installation procedures for software packages&lt;/p&gt;
&lt;h3 id=&#34;SQL&#34;&gt;SQL&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType SQL
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Structured Query Language format&lt;/p&gt;
&lt;h3 id=&#34;DSQL&#34;&gt;DSQL&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType DSQL
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Dynamic Structured Query Language format&lt;/p&gt;
&lt;h3 id=&#34;VIM&#34;&gt;VIM&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType VIM
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Vim source code file format&lt;/p&gt;
&lt;h3 id=&#34;YAML&#34;&gt;YAML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType YAML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Human-readable data-serialization language format&lt;/p&gt;
&lt;h3 id=&#34;YML&#34;&gt;YML&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static final FileType YML
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Human-readable data-serialization language format&lt;/p&gt;
&lt;h3 id=&#34;values--&#34;&gt;values()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static FileType[] values()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
com.groupdocs.comparison.result.FileType[]&lt;/p&gt;
&lt;h3 id=&#34;valueOf-java.lang.String-&#34;&gt;valueOf(String name)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static FileType valueOf(String name)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;name&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&#34;fromFileNameOrExtension-java.lang.String-&#34;&gt;fromFileNameOrExtension(String value)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static FileType fromFileNameOrExtension(String value)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Return FileType based on file name or extension&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;value&lt;/td&gt;
&lt;td&gt;java.lang.String&lt;/td&gt;
&lt;td&gt;File name or extension, not null&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
&lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt; - the file type&lt;/p&gt;
&lt;h3 id=&#34;getSupportedFileTypes--&#34;&gt;getSupportedFileTypes()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static List&amp;lt;FileType&amp;gt; getSupportedFileTypes()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets list of supported file types&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.util.List&amp;lt;com.groupdocs.comparison.result.FileType&amp;gt; - list of FileType&lt;/p&gt;
&lt;h3 id=&#34;areEquals-com.groupdocs.comparison.result.FileType-com.groupdocs.comparison.result.FileType-&#34;&gt;areEquals(FileType left, FileType right)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static boolean areEquals(FileType left, FileType right)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Checks the equality of provided file types&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;left&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Left &lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt; object.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;right&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Right &lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt; object.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
boolean - true if equal, otherwise false&lt;/p&gt;
&lt;h3 id=&#34;areNotEquals-com.groupdocs.comparison.result.FileType-com.groupdocs.comparison.result.FileType-&#34;&gt;areNotEquals(FileType left, FileType right)&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public static boolean areNotEquals(FileType left, FileType right)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Checks are provided file types not equals&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Parameters:&lt;/strong&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;left&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Left &lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt; object.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;right&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Right &lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt; object.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
boolean - true if not equal, otherwise false&lt;/p&gt;
&lt;h3 id=&#34;getFileFormat--&#34;&gt;getFileFormat()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String getFileFormat()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets text description of the file type&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - file type descriptiuon&lt;/p&gt;
&lt;h3 id=&#34;getExtension--&#34;&gt;getExtension()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String getExtension()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets the extension of the file type&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - extension of the file type&lt;/p&gt;
&lt;h3 id=&#34;toString--&#34;&gt;toString()&lt;/h3&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;public String toString()
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Gets string representation of &lt;a href=&#34;../../com.groupdocs.comparison.result/filetype&#34;&gt;FileType&lt;/a&gt;, for example  &amp;lsquo;PHP Programming Language format (.php)&amp;rsquo;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Returns:&lt;/strong&gt;
java.lang.String - string representation&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
