1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
/*
Copyright (c) 2013 James Ahlborn
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.healthmarketscience.jackcess;
import java.io.IOException;
/**
* Map of properties for a database object.
*
* @author James Ahlborn
* @usage _general_class_
*/
public interface PropertyMap extends Iterable<PropertyMap.Property>
{
public static final String ACCESS_VERSION_PROP = "AccessVersion";
public static final String TITLE_PROP = "Title";
public static final String AUTHOR_PROP = "Author";
public static final String COMPANY_PROP = "Company";
public static final String DEFAULT_VALUE_PROP = "DefaultValue";
public static final String REQUIRED_PROP = "Required";
public static final String ALLOW_ZERO_LEN_PROP = "AllowZeroLength";
public static final String DECIMAL_PLACES_PROP = "DecimalPlaces";
public static final String FORMAT_PROP = "Format";
public static final String INPUT_MASK_PROP = "InputMask";
public static final String CAPTION_PROP = "Caption";
public static final String VALIDATION_RULE_PROP = "ValidationRule";
public static final String VALIDATION_TEXT_PROP = "ValidationText";
public static final String GUID_PROP = "GUID";
public static final String DESCRIPTION_PROP = "Description";
public static final String RESULT_TYPE_PROP = "ResultType";
public static final String EXPRESSION_PROP = "Expression";
public String getName();
public int getSize();
public boolean isEmpty();
/**
* @return the property with the given name, if any
*/
public Property get(String name);
/**
* @return the value of the property with the given name, if any
*/
public Object getValue(String name);
/**
* @return the value of the property with the given name, if any, otherwise
* the given defaultValue
*/
public Object getValue(String name, Object defaultValue);
/**
* Creates a new (or updates an existing) property in the map. Attempts to
* determine the type of the property based on the name and value (the
* property names listed above have their types builtin, otherwise the type
* of the value is used).
* <p/>
* Note, this change will not be persisted until the {@link #save} method
* has been called.
*
* @return the newly created (or updated) property
* @throws IllegalArgumentException if the type of the property could not be
* determined automatically
*/
public Property put(String name, Object value);
/**
* Creates a new (or updates an existing) property in the map.
* <p/>
* Note, this change will not be persisted until the {@link #save} method
* has been called.
*
* @return the newly created (or updated) property
*/
public Property put(String name, DataType type, Object value);
/**
* Puts all the given properties into this map.
*
* @param props the properties to put into this map ({@code null} is
* tolerated and ignored).
*/
public void putAll(Iterable<? extends Property> props);
/**
* Removes the property with the given name
*
* @return the removed property, or {@code null} if none found
*/
public Property remove(String name);
/**
* Saves the current state of this map.
*/
public void save() throws IOException;
/**
* Info about a property defined in a PropertyMap.
*/
public interface Property
{
public String getName();
public DataType getType();
public Object getValue();
/**
* Sets the new value for this property.
* <p/>
* Note, this change will not be persisted until the {@link
* PropertyMap#save} method has been called.
*/
public void setValue(Object newValue);
}
}
|