Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCategory (1.39 sec)

  1. src/main/java/jcifs/smb/SmbOperationException.java

         */
        public boolean isNetworkError() {
            return errorCode.getCategory() == ErrorCategory.NETWORK;
        }
    
        /**
         * Check if this is an authentication error
         *
         * @return true if authentication error
         */
        public boolean isAuthenticationError() {
            return errorCode.getCategory() == ErrorCategory.AUTHENTICATION;
        }
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbException.java

         */
        public Severity getSeverity() {
            return severity;
        }
    
        /**
         * Gets the error category
         *
         * @return the category
         */
        public Category getCategory() {
            return category;
        }
    
        /**
         * Gets the error context
         *
         * @return the context map
         */
        public Map<String, Object> getContext() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

        }
    
        /**
         * Gets the category of the video.
         * @return the category
         */
        public String getCategory() {
            return category;
        }
    
        /**
         * Sets the category of the video.
         * @param category the category to set
         */
        public void setCategory(final String category) {
            this.category = category;
        }
    
        /**
         * Gets the family friendly flag.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (VIDEO_CATEGORY_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
                        currentVideo.setCategory(buf.toString().trim());
                        buf = null;
                    }
                } else if (VIDEO_FAMILY_FRIENDLY_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top