Class ObjectNameFilter
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.objectstorage.model.ObjectNameFilter
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public final class ObjectNameFilter extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
A filter that compares object names to a set of prefixes or patterns to determine if a rule applies to a given object.The filter can contain include glob patterns, exclude glob patterns and inclusion prefixes. The inclusion prefixes property is kept for backward compatibility. It is recommended to use inclusion patterns instead of prefixes. Exclusions take precedence over inclusions.
Note: Objects should always be created or deserialized using theObjectNameFilter.Builder
. This model distinguishes fields that are null because they are unset from fields that are explicitly set to null. This is done in the setter methods of theObjectNameFilter.Builder
, which maintain a set of all explicitly set fields calledObjectNameFilter.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ObjectNameFilter.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ObjectNameFilter.Builder
builder()
Create a new builder.boolean
equals(Object o)
List<String>
getExclusionPatterns()
An array of glob patterns to match the object names to exclude.List<String>
getInclusionPatterns()
An array of glob patterns to match the object names to include.List<String>
getInclusionPrefixes()
An array of object name prefixes that the rule will apply to.int
hashCode()
ObjectNameFilter.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.
-
-
-
Constructor Detail
-
ObjectNameFilter
@Deprecated @ConstructorProperties({"inclusionPrefixes","inclusionPatterns","exclusionPatterns"}) public ObjectNameFilter(List<String> inclusionPrefixes, List<String> inclusionPatterns, List<String> exclusionPatterns)
Deprecated.
-
-
Method Detail
-
builder
public static ObjectNameFilter.Builder builder()
Create a new builder.
-
toBuilder
public ObjectNameFilter.Builder toBuilder()
-
getInclusionPrefixes
public List<String> getInclusionPrefixes()
An array of object name prefixes that the rule will apply to.An empty array means to include all objects.
- Returns:
- the value
-
getInclusionPatterns
public List<String> getInclusionPatterns()
An array of glob patterns to match the object names to include.An empty array includes all objects in the bucket. Exclusion patterns take precedence over inclusion patterns. A Glob pattern is a sequence of characters to match text. Any character that appears in the pattern, other than the special pattern characters described below, matches itself. Glob patterns must be between 1 and 1024 characters.
The special pattern characters have the following meanings:
\\ Escapes the following character * Matches any string of characters. ? Matches any single character . [...] Matches a group of characters. A group of characters can be: A set of characters, for example: [Zafg9@]. This matches any character in the brackets. A range of characters, for example: [a-z]. This matches any character in the range. [a-f] is equivalent to [abcdef]. For character ranges only the CHARACTER-CHARACTER pattern is supported. [ab-yz] is not valid [a-mn-z] is not valid Character ranges can not start with ^ or : To include a '-' in the range, make it the first or last character.
- Returns:
- the value
-
getExclusionPatterns
public List<String> getExclusionPatterns()
An array of glob patterns to match the object names to exclude.An empty array is ignored. Exclusion patterns take precedence over inclusion patterns. A Glob pattern is a sequence of characters to match text. Any character that appears in the pattern, other than the special pattern characters described below, matches itself. Glob patterns must be between 1 and 1024 characters.
The special pattern characters have the following meanings:
\\ Escapes the following character * Matches any string of characters. ? Matches any single character . [...] Matches a group of characters. A group of characters can be: A set of characters, for example: [Zafg9@]. This matches any character in the brackets. A range of characters, for example: [a-z]. This matches any character in the range. [a-f] is equivalent to [abcdef]. For character ranges only the CHARACTER-CHARACTER pattern is supported. [ab-yz] is not valid [a-mn-z] is not valid Character ranges can not start with ^ or : To include a '-' in the range, make it the first or last character.
- Returns:
- the value
-
toString
public String toString()
- Overrides:
toString
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classcom.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
-